5

Never underestimate the power of a misplaced static in your Java to totally fuck you over.

I was busy with my computer science project for the semester where we have to implement a Sudoku solver without backtracking by using graph theory.

So there I was writing my data structure for the grid when for some reason all the cells were initialized with the value 8.

After a whole night of debugging I was about to start over when I realized I had made my array static.

And boom, it works. WTF!!!!!!!

Comments
Add Comment