You are viewing a single comment's thread. Return to all comments →
whats wrong in this code? (2 test cases failed)
public static List jimOrders(List> orders) { // Write your code here
List<Integer>list = new ArrayList<>(); for(int i=0;i<orders.size();i++){ list.add(orders.get(i).get(0)+orders.get(i).get(1)); } List<Integer>list2 = new ArrayList<>(list); Collections.sort(list2); List<Integer>ans = new ArrayList<>(); for(int i=0;i<list2.size();i++){ ans.add(list.indexOf(list2.get(i))+1); } return ans; }
Seems like cookies are disabled on this browser, please enable them to open this website
Jim and the Orders
You are viewing a single comment's thread. Return to all comments →
whats wrong in this code? (2 test cases failed)
public static List jimOrders(List> orders) { // Write your code here