I am looking for advice on how to approach a problem. I would like to take a given number and break it into 7 parts.
For example, the function call,
BreakIntoSmallerNumbers(15);
would return the following array: [3, 2, 2, 2, 2, 2, 2]
BreakIntoSmallerNumbers(3); returns [1, 1, 1]...