Skip to main content

PythonPython 2, 32 charsbytes

print ord(',')*ord('-')+ord('"') 
print ord(',')*ord('-')+ord('"') 

Try it online!

Probably possible to reduce it using the 2014 th Unicode char ߞ, but I didn't try.

Quincunx notes that

a=ord('.');print a*a-ord('f') 
a=ord('.');print a*a-ord('f') 

Try it online!

is shorter by three chars.

Python, 32 chars

print ord(',')*ord('-')+ord('"') 

Probably possible to reduce it using the 2014 th Unicode char ߞ, but I didn't try.

Quincunx notes that

a=ord('.');print a*a-ord('f') 

is shorter by three chars.

Python 2, 32 bytes

print ord(',')*ord('-')+ord('"') 

Try it online!

Probably possible to reduce it using the 2014 th Unicode char ߞ, but I didn't try.

Quincunx notes that

a=ord('.');print a*a-ord('f') 

Try it online!

is shorter by three chars.

Add shorter solution by Quincunx
Source Link
Bruno Le Floch
  • 1.3k
  • 10
  • 13

Python, 32 chars

print ord(',')*ord('-')+ord('"') 

Probably possible to reduce it using the 2014 th Unicode char ߞ, but I didn't try.

Quincunx notes that

a=ord('.');print a*a-ord('f') 

is shorter by three chars.

Python, 32 chars

print ord(',')*ord('-')+ord('"') 

Probably possible to reduce it using the 2014 th Unicode char ߞ, but I didn't try.

Python, 32 chars

print ord(',')*ord('-')+ord('"') 

Probably possible to reduce it using the 2014 th Unicode char ߞ, but I didn't try.

Quincunx notes that

a=ord('.');print a*a-ord('f') 

is shorter by three chars.

Source Link
Bruno Le Floch
  • 1.3k
  • 10
  • 13

Python, 32 chars

print ord(',')*ord('-')+ord('"') 

Probably possible to reduce it using the 2014 th Unicode char ߞ, but I didn't try.