remove comment

This commit is contained in:
BamaCharanChhandogi 2023-08-17 09:59:25 +05:30
parent 8be37da62a
commit 3040f99707

View File

@ -1,13 +1,4 @@
def octal_to_binary(octal_number: str) -> str: def octal_to_binary(octal_number: str) -> str:
"""
Convert an octal number to binary.
Args:
octal_number (str): The octal number as a string.
Returns:
str: The binary representation of the octal number.
"""
binary_number = "" binary_number = ""
octal_digits = "01234567" octal_digits = "01234567"