You must log in or register to comment.
Instructions unclear. Now I got 10 billion modules.
That’s what happens when you write JavaScript
The next question is what naming convention you used for them all.
smallest isOdd function
There are only 4.29 billion possible values of an int32, so even if you used 2 lines for each case, it’d still be under 10 billion lines of code
bool isOdd(int num) if (num == 1) { return true; } if (num == 2) { return false; } …
okay but what about an
int512
?
Says the person writing 100 words when 3 will do.