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