PyHash
Hello hacker,
I am learning python and read the docs a bit.
There is not too much challenging material in there, but I got this idea for a little challenge.
# Your mission is to make this True.
def fly_away(num: int) -> bool:
return hash(num) == 31337
Note: This challenge got tested with cpython, 64-bit, python3.10 and should be easy.
Good luck!
- gizmore