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([
"##",
"##"
]) ➞ truen <= 2 are considered automatically filled (see example #4).