A shop has a stack of chocolate boxes each containing a positive number of chocolates. Initially, the stack is empty. During the next N minutes, either of these two things may happen:
Determine the number of chocolates in the sold box each time he sells a box.
Notes
Example 1
Assumptions
Input
Output: 1 2
Approach
After the first two minutes, the stack is [1, 2].
During the third minute, the box on the top having 1 chocolate is sold.
During the fourth minute, the box on the top having 2 chocolates is sold.
Function description
Complete the function solve() provided in the editor. The function takes the following 2 parameters and returns the solution.
Input format for custom testing
Note: Use this input format if you are testing against custom input or writing code in a language where we don’t provide boilerplate code
Output format
Print an array, representing the number of chocolates in the sold box each time you sell a box.
Constraints
Given
Input
Output: 5
Approach
After the first minute, the stack is [5].
During the second minute, the top of the stack has 5 chocolates.
After the third minute, the stack is [5].