[Solved] incompatible types: int[] cannot be converted to java.util.List


You’re returning List<Integer>, but you’re creating an int[]. They’re completely different things! try this instead:

  private static List<Integer> randomIntegerArray(int n) {
    List<Integer> list = new ArrayList<>();
    for(int i = 0; i < n; i++) {
      list.add((int) Math.random()); // always returns 0
    }
    return list;
  }

Or if you definitely want to use an array, change the method’s declaration:

private static int[] randomIntegerArray(int n)

And be aware that Math.random() returns a value between 0 and 1, if you convert it to an int it’ll always be 0.

solved incompatible types: int[] cannot be converted to java.util.List