Today I learned that eight to the power of eight is zero. Who'da thunk? Incorrect: `2u8.pow(500)` :arrow_right: `0` :x: `8u8.pow(8)` :arrow_right: `0` :x: `4u32.pow(1000)` :arrow_right: `0` :x: Correct: `8u8.pow(7)` :arrow_right: overflow :white_check_mark: `8i8.pow(8)` :arrow_right: overflow :white_check_mark: `2u8.pow(9)` :arrow_right: overflow :white_check_mark: Oddly enough, this one breaks the pattern: `2u8.pow(10)` :arrow_right: overflow :white_check_mark: Haven't bothered with further cases; at this point it's probably best to just look at the implementation and see what's going on.