fn count_for_stone(stone: u64, iterations: u8) -> usize
Expand description
Recursive function to calculate the expansion of a single stone. There are many repeats, especially for small numbers, so this is cached to allow the program to run quickly.
ยงCaching
This is a cached function that uses the COUNT_FOR_STONE
cached static.