Create a function that calculates what percentage of the box is filled in. Give your answer as a string percentage rounded to the nearest integer.
percent_filled([
"####",
"# #",
"#o #",
"####"
]) ➞ "25%"
# One element out of four spaces.
percent_filled([
"#######",
"#o oo #",
"#######"
]) ➞ "60%"
# Three elements out of five spaces.
percent_filled([
"######",
"#ooo #",
"#oo #",
"# #",
"# #",
"######"
]) ➞ "31%"
# Five elements out of sixteen spaces.