I've looked a lot through here and can't quite find why this line is wrong:
ArrayList <BigInteger> data = new ArrayList(); int [] primes = new int[25]; ... // Some initializing ... data.get(i) = data.get(i).divide( BigInteger.valueOf( primes[place] ) ); //<---- ... // Rest of the code Required: variable; Found: value.. What I'm doing wrong?