Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,884 questions

51,810 answers

573 users

How to find N unique integers sum up to zero in Java

2 Answers

0 votes
import java.util.ArrayList;
import java.util.List;

public class program {
    public static List<Integer> uniqueIntegersSumUpToZero(int n) {
        List<Integer> result = new ArrayList<>(n);
        
        for (int i = 0; i < n; i++) {
            result.add(2 * i - n + 1);
        }
        
        return result;
    }

    public static void main(String[] args) {
        int n = 6;
        List<Integer> result = uniqueIntegersSumUpToZero(n);
        
        for (int val : result) {
            System.out.print(val + " ");
        }
    }
}

  
  
  
/*
run:
  
-5 -3 -1 1 3 5 
  
*/

 

 



answered Apr 17, 2024 by avibootz
0 votes
import java.util.ArrayList;
import java.util.List;

public class program {
    public static List<Integer> uniqueIntegersSumUpToZero(int n) {
        List<Integer> result = new ArrayList<>();
        
        for (int i = 1; i <= n / 2; i++) {
            result.add(-i);
            result.add(i);
        }
        
        if (n % 2 != 0) {
            result.add(0);
        }
        
        return result;
    }
    
    public static void main(String[] args) {
        int n = 7;
        List<Integer> result = uniqueIntegersSumUpToZero(n);
        
        for (int val : result) {
            System.out.print(val + " ");
        }
    }
}

  
  
  
/*
run:
  
-1 1 -2 2 -3 3 0 
  
*/

 

 



answered Apr 17, 2024 by avibootz

Related questions

1 answer 77 views
1 answer 72 views
2 answers 99 views
2 answers 119 views
2 answers 118 views
...