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