79446797

Date: 2025-02-17 23:16:39
Score: 1
Natty:
Report link
int[] arr2 = new int[] {54, 432, 53, 21, 43};
int[] answer = Arrays.stream(arr2).boxed()
    .sorted(Comparator.comparing(Integer::intValue).reversed())
    .mapToInt(Integer::intValue)
    .toArray()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: h.z.