Create a function that creates a box based on dimension n.
n
make_box(5) ➞ [ "#####", "# #", "# #", "# #", "#####" ] make_box(3) ➞ [ "###", "# #", "###" ] make_box(2) ➞ [ "##", "##" ] make_box(1) ➞ [ "#" ]
N/A