Sampsa

Results 1 issues of Sampsa

![image](https://user-images.githubusercontent.com/69092953/99258056-a6f3eb80-2820-11eb-9c93-eab2a4a0d19a.png) `treesToCut(tier) = Math.ceiling(treesToCut(tier-1) * LOG16(18-tier))` with `treesToCut(1) = 1` `costToCut(tier) = costToCut(tier-1) * 2` with `costToCut(1) = 64` Functions are recursive so suggest implementing as a precalculated array to...