Delete binaryToHexaFunction.py

This commit is contained in:
helplessThor
2020-10-19 20:16:30 +05:30
committed by GitHub
parent 5b4088b1e0
commit e797c8fa5c

View File

@@ -1,11 +0,0 @@
from .__init__ import *
def binaryToHexaFunc(max_dig=1000):
problem = ''
for i in range(random.randint(1, max_dig)):
temp = str(random.randint(0, 1))
problem += temp
solution = hex(int(problem))
return problem, solution