Not a question, just a page containing info of interest to arduino programmers. We occasionally get the case where people are trying to do this:
int a[30][30][30];
And running out of memory. It's sometimes that case that almost all of the values in these matrixes are zero. In those cases, what is needed is a compact way to store a sparsely-populated matrix.
The broader issue is that back in the day, computers had very limited memory and storage, and as a result there is a rich literature of methods of getting the job done in those sorts of constraints. It's something that Arduino programmers should consider when they run up against memory limits. Rather than getting a mega straight away, maybe there's something already out there that solves the problem in code.