Comments on Make $2 + 2 = 5$
Post
Make $2 + 2 = 5$
In this challenge, add 2 integers, but if both the integers are 2
, output 5
. Shortest code in each language wins!
Example ungolfed program in Python 3.x
def add(x, y):
if x == 2 and y == 2:
return 5
else:
return x + y
[C (gcc)], 30 bytes …
3y ago
[Haskell], 13 bytes …
3y ago
Vyxal `s`, 5 bytes ``` 2=A …
3y ago
Ruby, 20 bytes ->a,b{4[a …
3y ago
[Python 3], 24 bytes …
3y ago
Zsh, 25 bytes >2 <$@ …
3y ago
Japt `-x`, 6 5 bytes Takes …
3y ago
[Pyth], 6 bytes +!-Q2s …
8mo ago
Dyalog APL, 9 bytes ```apl …
1y ago
UiuaSBCS `# Experimental!`, 8 …
7d ago
[AWK], 28 26 bytes {pri …
5mo ago
ESCR - not a golfing answer …
10mo ago
x86-32 assembly, 14 bytes S …
1y ago
J, 7 9 bytes ```J ++2&=@+. …
2y ago
Ruby, 19 bytes ``` ->a,b{ …
3y ago
[Ruby], 23 bytes ```ruby - …
3y ago
[Husk], 7 bytes +±Λ=2¹Σ …
3y ago
[C (gcc)], 33 31 bytes …
3y ago
JavaScript, 19 bytes …
3y ago
C (gcc), 41 bytes ```c f(x …
10mo ago
J, 17 char ``` +/`5:@.(2./ …
2y ago
[Java (JDK)], 51 50 23 21 byte …
3y ago
2 comment threads