Given a list of strings depicting a row of buildings, create a function which sets the gap between buildings as a given amount.
widen_streets([
"### ## #",
"### # ## #",
"### # ## #",
"### # ## #",
"### # ## #"
], 3) ➞
[
"### ## #",
"### # ## #",
"### # ## #",
"### # ## #",
"### # ## #"
]
widen_streets([
"## ### ###",
"## ### ###",
"## ### ###",
"## ### ###"
], 2) ➞
[
"## ### ###",
"## ### ###",
"## ### ###",
"## ### ###"
]
widen_streets([
"# # # # #"
], 2) ➞
[
"# # # # #"
]