Didactic Byte

Discussion of challenges you have already solved
kethrain
Posts: 1
Joined: Sat Feb 26, 2011 8:29 pm

Post by kethrain »

i need to learn more and more .................its WOW for me!!!!!!![/i]
PushyFurball
Posts: 1
Joined: Tue Jul 19, 2011 8:15 pm
Location: Mo-Town

Post by PushyFurball »

I must be retarded, had to use a "Decimal to Hex Converter"... Wikipedia here I come.
ninjaface567
Posts: 1
Joined: Sun Aug 07, 2011 11:03 am
Location: New Zealand

Post by ninjaface567 »

i used google
just type "233 in hex"
and theres your answer
randomitemodda
Posts: 6
Joined: Sun Sep 04, 2011 3:50 pm
Location: 1110.1001.111.101.10010.1001

Post by randomitemodda »

Not Much OF a Challenge
lortedy
Posts: 4
Joined: Thu May 03, 2012 9:49 pm

Post by lortedy »

Use "calc.exe" in Scientific Mode and input number then set numeration base to Hex.
=> E9

Manual solution:

Code: Select all

233 % 16 = 14 r 9
14 % 16 = 0 r 14 (14 = E in hex)
=> E9

Python:

Code: Select all

nr = 233
print hex(nr)
=> 0xe9
RixNguyen
Posts: 5
Joined: Sun Aug 25, 2019 12:34 pm

Post by RixNguyen »

This is basic for programmer. It's so easy. :lol: :lol: :lol:
mikestoj
Posts: 2
Joined: Sun May 23, 2021 10:37 pm

Post by mikestoj »

solved
Post Reply