Code: Select all
00^<8?1+07-6-gp

Code: Select all
00^<8?1+07-6-gp
Code: Select all
private long calc(int depth) {
long result = 1;
for(int i=1; i<=depth; i++) {
result = result + (i % 7) + ((((result ^ i) % 4) == 0) ? 1 : 0);
}
return result;
}
The only hint you needmichuber wrote:No fun with your iPod anymore?