Fixed spliting at spaces issue
This commit is contained in:
@@ -11,7 +11,7 @@ import sys
|
||||
# All modules for CS 412 must include a main method that allows it
|
||||
# to imported and invoked from other python scripts
|
||||
def main():
|
||||
sounds: list[str] = sys.stdin.readline().strip().split(" ")
|
||||
sounds: list[str] = sys.stdin.readline().strip().split()
|
||||
num_animals: int = int(sys.stdin.readline().strip())
|
||||
|
||||
animal_map: dict[str, str] = {}
|
||||
|
||||
Reference in New Issue
Block a user