Post History
#1: Initial revision
Draw shapes: E1 - Square/Rectangle
# Challenge Take input of a non-whitespace character and a positive integer $n$, and print out a square (or rectangle) of size $n$ using the inputted character. Shortest program wins! # Test Cases ```none n = 1, c = $ $$$ $ $ $$$ n = 3, c = ^ ^^^^^ ^ ^ ^ ^ ^ ^ ^^^^^ n = 10, c = L LLLLLLLLLLLL L L L L L L L L L L L L L L L L L L L L LLLLLLLLLLLL ```