Ad
  • Custom User Avatar

    Rust solution setup uses a template:

    // Return the two oldest/oldest ages within the vector of ages passed in.
    // it should return the two ages as a sorted vector, youngest age first
    fn two_oldest_ages(mut ages: Vec<i32>) -> Vec<i32> {
      // Code logic here
    }
    
  • Default User Avatar

    This comment is hidden because it contains spoiler information about the solution