JudgeHodorMD

JudgeHodorMD t1_ittymwf wrote

This is about data types in programming. The code only has so many digits to work with. So there’s only so many possible numbers.

Like 0 to 9999, except it’s more like a binary equivalent. No numbers exist that are outside of that range. If you try to go past the limit you can get an error where it basically just loops around.

2