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: sorting, formatting
Create a function that returns true if an asterisk * is inside a box. Examples inBox([ "###", "##", "###" ]) ➞ true inBox([ "####", "# #", "# #", "####" ]) ➞ true inBox([ "####", "# #", "# #", "####" ]) ➞ false inBox([ "#####", "# #", "# #", "# #", "#####" ]) ➞ false Notes The asterisk may be in the array, howev
Create a function that returns true
if an asterisk *
is inside a box.
inBox([
"###",
"#*#",
"###"
]) ➞ true
inBox([
"####",
"#* #",
"# #",
"####"
]) ➞ true
inBox([
"*####",
"# #",
"# #*",
"####"
]) ➞ false
inBox([
"#####",
"# #",
"# #",
"# #",
"#####"
]) ➞ false
The asterisk may be in the array, however, it must be inside the box, if it exists.