aoc::year2019::day16

Constant PASCALS_TRIANGLE

Source
const PASCALS_TRIANGLE: [[usize; 5]; 5];
Expand description

Lookup table for first five rows of Pascal’s triangle. A convention specifically for Lukas’s theorem is that if n < k then the value is 0.