Create a function that checks if the box is completely filled with the asterisk symbol *.
completelyFilled([
"#####",
"#***#",
"#***#",
"#***#",
"#####"
]) ➞ true
completelyFilled([
"#####",
"#* *#",
"#***#",
"#***#",
"#####"
]) ➞ false
completelyFilled([
"###",
"#*#",
"###"
]) ➞ true
completelyFilled([
"##",
"##"
]) ➞ true
n <= 2 are considered automatically filled (see example #4).