FastPrepFastPrep
Problem Brief

Determine the Elimination Order (MLE)

INTERNOA

Given the competition results, determine the elimination order. For example:

Input:

[["Tom 20", "Sam 10"], ["Sam 20", "Tom 10"]]

In the first round, Tom takes the longest time and gets eliminated. In the second round, only Sam remains, so their score is valid and added to the output list.

Output:

["Tom", "Sam"]

Edge case: If scores are tied, all tied contestants are eliminated simultaneously.

1Example 1

Input
results = [["Tom 20", "Sam 10"], ["Sam 20", "Tom 10"]]
Output
["Tom", "Sam"]
Explanation

In the first round, Tom takes the longest time and gets eliminated. In the second round, only Sam remains, so their score is valid and added to the output list.

public String[] determineEliminationOrder(String[][] results) {
  // write your code here
}
Input

results

[["Tom 20", "Sam 10"], ["Sam 20", "Tom 10"]]

Output

["Tom", "Sam"]

Sign in to submit your solution.