Created
December 30, 2013 07:06
-
-
Save sysr-q/8178790 to your computer and use it in GitHub Desktop.
You ever write code and just wonder where it all went wrong?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
print( | |
(lambda λ: (λ.translate))(input("λ "))( | |
((lambda Λ: | |
(lambda Γ: | |
(lambda ω, ϒ: | |
ω(ϒ, ϒ[2:] + ϒ[:2])) (Γ.maketrans, Λ))("Σ") | |
)((lambda π: | |
(lambda α, Ω: | |
getattr(α, Ω))(π, "ascii_lowercase") | |
)(__import__("string"))))) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment