Skip to content

Instantly share code, notes, and snippets.

View heffcodex's full-sized avatar
🐈

Vladislav K heffcodex

🐈
View GitHub Profile
@heffcodex
heffcodex / unit_converter.py
Created November 22, 2024 00:21
YouTube coding task solution just for fun
# 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",
)