Given a list of strings (depicting a skyline of several buildings), return in meters the height of the tallest building. Each line in the list represents 20m.
tallest_building_height([
" ##",
" ##",
" ##",
"### ### ##",
"### ### ###",
"### ### ###",
"### ### ###"
]) ➞ "140m"
# Tallest building is 7 characters
# 7 x 20m = 140m
tallest_building_height([
" ",
" ",
" ",
" # ###",
" # # ###",
"### ### ###",
"### ### ###"
]) ➞ "80m"
# Tallest building is 4 characters
# 4 x 20m = 80m
tallest_building_height([
" ",
" ### ",
" ### ",
"### ##### ",
"### # ##### ",
"### ### ##### ",
"###### ### #######",
"###### ###### ### #######",
"################### #######",
"###############################",
"###############################"
]) ➞ "200m"
# Tallest building is 10 characters
# 10 x 20m = 200m