We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
In Java:
public static String twoArrays(int k, List<Integer> A, List<Integer> B) {
// Ordering A in ascending order
A.sort((a, b) -> Integer.compare(a, b));
// Ordering B in descending order
B.sort((a, b) -> Integer.compare(b, a));
for(int i=0;i<A.size();i++){
if(A.get(i) + B.get(i) < k){
return "NO";
}
}
Permuting Two Arrays
You are viewing a single comment's thread. Return to all comments →
return "YES";
mate.. you can just use
A.sort(Comparator.naturalOrder());
orCollections.sort(A)