mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-23 08:51:31 -04:00
👾
This commit is contained in:
parent
1d44d182e2
commit
a85ed914d3
320 changed files with 0 additions and 0 deletions
23
bit_operations/convert_to_hex.py
Normal file
23
bit_operations/convert_to_hex.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
# author: bt3gl
|
||||
|
||||
|
||||
def convert_to_hex(num: int) -> str:
|
||||
|
||||
hex_chars = "0123456789abcdef"
|
||||
size = 32
|
||||
base = 16
|
||||
|
||||
if num == 0:
|
||||
return "0"
|
||||
|
||||
if num < 1:
|
||||
num += 2**size
|
||||
|
||||
result = ""
|
||||
while num:
|
||||
result += hex_chars[num % base]
|
||||
num //= base
|
||||
|
||||
return result[::-1]
|
Loading…
Add table
Add a link
Reference in a new issue