Squares

1. Write a function that takes in number as argument and prints a square

Input

let square(n) =>
def square(n):

Output

expected output: remember to use "*"
#####
#####
#####
#####
#####

2 Write a function that takes in number as argument and prints a hollow square in the center

Input


let square(n) =>
def square(n):

Output

expected output: remember to use "*"
#####
#   #
#   #
#   #
#####

RAW CONTENT URL