This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The task is got form this video: https://www.youtube.com/watch?v=V8DGdPkBBxg | |
from typing import Mapping, Set, Sequence, Tuple, Union | |
input_facts = ( | |
"m = 3.28 ft", | |
"ft = 12 in", | |
"hr = 60 min", | |
"min = 60 sec", | |
) |
OlderNewer