Skip to main content
Bounty Awarded with 500 reputation awarded by alephalpha
added 72 characters in body
Source Link
xnor
  • 149.7k
  • 26
  • 287
  • 676

Python 3, cracks Sisyphus' answer

print(dⅳmod(99,15)) 

Try it online!

TheInserts ivdⅳmod where the is U+2173 (Small Roman Numeral Four), a one-character multibyte ligature that normalizes to iv, letting us squeeze the built-in into 5 characters. I learned of this ligature trick for Python 3 in doing this crack.

Python 3, cracks Sisyphus' answer

print(dⅳmod(99,15)) 

Try it online!

The iv is U+2173 (Small Roman Numeral Four), a one-character multibyte ligature that normalizes to iv. I learned of this ligature trick for Python 3 in doing this crack.

Python 3, cracks Sisyphus' answer

print(dⅳmod(99,15)) 

Try it online!

Inserts dⅳmod where the is U+2173 (Small Roman Numeral Four), a one-character multibyte ligature that normalizes to iv, letting us squeeze the built-in into 5 characters. I learned of this ligature trick for Python 3 in doing this crack.

Source Link
xnor
  • 149.7k
  • 26
  • 287
  • 676

Python 3, cracks Sisyphus' answer

print(dⅳmod(99,15)) 

Try it online!

The iv is U+2173 (Small Roman Numeral Four), a one-character multibyte ligature that normalizes to iv. I learned of this ligature trick for Python 3 in doing this crack.