Skip to content

Commit cfa47cf

Browse files
committed
update
1 parent 867f6d5 commit cfa47cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/DecimalToBinary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
def DecimalToBinary(x):
2-
BinaryNumb = '0' + bin(x)[2:]
2+
BinaryNumb = '0' + bin(x)[2:]
33
return BinaryNumb
44

55
def main():

0 commit comments

Comments
 (0)