29

Was in a middle of competitive coding trying to do some operation on a nxn matrix. Wrote this code.

for(i = 0; i < n; i++){
for(j = 0; j < n; i++){
.......
.......
}
}

Was waiting for the output, only to wait long enough for the coding platform to throw a timeout at my face and make me doubt my skills.

Comments
Add Comment