Ad
Code
Diff
  • import java.util.*;
    
    public class Kata {
        public static int findMax(int[] array) {
            // Write a method that returns the largest integer in the list.
            // You can assume that the list has at least one element.
          
          Arrays.sort(array);
          
          return (array[array.length-1]);
        }
    }
    • import java.util.*;
    • public class Kata {
    • public static int findMax(int[] my_array) {
    • public static int findMax(int[] array) {
    • // Write a method that returns the largest integer in the list.
    • // You can assume that the list has at least one element.
    • Arrays.sort(my_array);
    • return (my_array[my_array.length-1]);
    • Arrays.sort(array);
    • return (array[array.length-1]);
    • }
    • }