Create a function that returns True if an asterisk * is inside a box.
in_box([
"###",
"#*#",
"###"
]) ➞ True
in_box([
"####",
"#* #",
"# #",
"####"
]) ➞ True
in_box([
"*####",
"# #",
"# #*",
"####"
]) ➞ false
in_box([
"#####",
"# #",
"# #",
"# #",
"#####"
]) ➞ False
The asterisk may be in the array, however, it must be inside the box, if it exists.