Challenge overview
Hello and welcome to the challenge!
Write a code that returns all possible subarrays of the given array with distinct integers. Subarrays should obey the rule of order shown in the example.
Example
solve([1,2,3]) -> [[], [1], [2], [1, 2], [3], [1, 3], [2, 3], [1, 2, 3]]
Input
- an array with integers
Output
- the array with all found subarrays in the proper order
Constraints
0 < length of the given array < 100
You can solve this programming contest in C++, C#, Ruby, JavaScript, Python and many other languages. If you want, you can also take part in other Challenges. Below you can find some of them:
Have fun and good luck! :)