Answers for "N unique integers that sum up to 0 array"

0

N unique integers that sum up to 0 array

Array -- N unique integers that sum up to 0
Write a function that, given an integer N (1 < N < 100), 
returns an array containing N unique integers that sum up to 0.
The function can return any such array. For example, given N = 4,
the function could return [1,0, -3,2] or [-2,1, -4,5]. The answer
[1, -1,1,3] would be incorrect (because value 1 occurs twice).
For N = 3 one of the possible answers is [-1,0,1]
(but there are many more correct answers).
 
Solution: 
 public static void main(String[] args) {
    System.out.println(Arrays.toString(Solution(5)));
}
public static int[] Solution(int N){
int[] result = new int[N];
int sum = 0;
for(int i=0; i < N-1; i++) {
result[i] =i;
sum += i;
}
result[N-1] = -sum;
return result;
    }
Posted by: Guest on September-29-2021

Code answers related to "N unique integers that sum up to 0 array"

Browse Popular Code Answers by Language