wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Helen Yu tags: strings, formatting
Create a function that creates a box based on dimension n. Examples makeBox(5) ➞ [ "#####", "# #", "# #", "# #", "#####" ] makeBox(3) ➞ [ "###", "# #", "###" ] makeBox(2) ➞ [ "##", "##" ] makeBox(1) ➞ [ "#" ] Notes N/A
Create a function that creates a box based on dimension n.
makeBox(5) ➞ [
"#####",
"# #",
"# #",
"# #",
"#####"
]
makeBox(3) ➞ [
"###",
"# #",
"###"
]
makeBox(2) ➞ [
"##",
"##"
]
makeBox(1) ➞ [
"#"
]
N/A