You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
319 B

4 years ago
## Group Price
### Instructions
Create a function named `groupPrice`, that can prices in a given string.
Your function will return s 2D array with the full price breakdown.
If there is no match, your function should return an empty array.
### Example
Given price of `USD12.31`:
```
[["USD12.31", "12", "31"]]
```