Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
oorrja
Edit Copy
Star
GitHub Repository:
oorrja/learntosolveit
Path:
blob/master/languages/python/design_hextobin.py
1
2
4
0
views
1
from
functools
import
partial
2
3
hexbin
=
partial
(
int
,
base
=
16
)
4
print
(
(
bin
(
hexbin
(
"FFFF"
)
)
)
)
5