Basic question on variables used in AI contest

Hello,
I have a question about the variables used inside the loop for the AI contest.
I am using Java and trying the “Code vs Zombies” at the moment , but i am sure this will apply for the others challenges as well…
Can i use the variables inside the for loop and stock them in another external variable (for read-only purpose)?
For instance zombieX, zombieY , humanX …?
Thank you

You have more than 700Mo (exact value in the FAQ), feel free to store anything you want up to that limit.
Usually you prepare your containers / classes before the while loop and update the values inside the while loop.

1 Like

Thank you you opened my eyes!