Comments on Evens or Odds - you know this one
Parent
Evens or Odds - you know this one
Get ready for a comparatively dry question - this is intended to be one of the "the"s of the code-golfing dictionary.
Create a program which inputs a base 10 non-negative whole number (without leading 0s) and outputs something if the number is odd or something else if the number is even.
You MUST input through STDIN unless your language doesn't have input facilities, in which case you may make a function for the purpose.
The odd and even outputs can be whatever you want, so long as the output for a specific parity will stay the same no matter what number of that parity is inputted.
One of the outputs can be absolutely nothing (0 characters) so long as the other output isn't nothing - one or both of the outputs can be printed through STDERR as long as the erroring output is constant for its parity (doesn't change depending on what numbers of a parity you feed it).
Shortest code following the rules wins.
Regex, 8 bytes ``` [02468] …
3y ago
[Python 3], 10 bytes …
3y ago
Scala `-language:postfixOps`, …
3y ago
[JavaScript (Node.js)], 6 byte …
3y ago
Japt, 1 byte u Japt, …
3y ago
[Jelly], 1 byte Ḃ Tr …
3y ago
Mathematica, 4 bytes ``` O …
3y ago
Rockstar, 44 bytes Outputs …
3y ago
[MAWP], 8 bytes ``` @!2P2WA: …
3y ago
[Ruby], 8 bytes ```ruby -> …
3y ago
[C (gcc)], 20 bytes …
3y ago
ESCR, 17 bytes show [and …
2y ago
Myby, 2 bytes ``` %2 ``` I …
2y ago
Ruby, 13 bytes According to …
3y ago
[PHP], 36 bytes <?p …
3y ago
[Python 3], 51 25 bytes …
3y ago
Post
Regex, 8 bytes
[02468]$
Matches strings ending in one of 0, 2, 4, 6, 8. [13579]$
is equivalent but with opposite outputs.
1 comment thread