Quad Interview Question

Reverse an array

Interview Answer

Anonymous

Mar 13, 2020

for (int i = array.length -1; i <= 0; i--) { // code... }