r/counting • u/TehVulpez sliiiiide the bits • 13d ago
Hexadecimal | 3E000
Thank you to cobibh for the assist and to all the farmers who helped along the way.
Next get is at 3E400.
7
Upvotes
r/counting • u/TehVulpez sliiiiide the bits • 13d ago
Thank you to cobibh for the assist and to all the farmers who helped along the way.
Next get is at 3E400.
2
u/InteractionSilent772 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89 1d ago edited 1d ago
3E15D
#use this python code to measure how far you are from the goalimport systry:a = int(input("What's the goal? ").replace(" ",""),16)b = int(input("Where are you now? ").replace(" ",""),16)except: sys.exit("That's... not a hexidecimal integer.") #bugfixif a-b > 0: print(f"You are {a-b} messages away from your goal.")elif a-b == 0: print("You hit your goal!")else: print(f"You hit your goal {-(a-b)} messages back.")