play with bits

This commit is contained in:
bt3gl 2023-07-29 20:18:30 -07:00 committed by GitHub
parent c77eb0dd00
commit 4b22537ee7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,16 @@
def convert_to_any_base(base: int, num: int) -> str:
if num == 0:
return "0"
n = abs(num)
result = ""
while n:
result += str(n % base)
n //= base
if num < 0:
result += '-'
return result[::-1]