You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yeah, the way it is written, it is "impossible" to fix. Maybe we could write a different way of doing it to take care of this issue. I'll think about this.
You could create a function combinationValues where you copy the container elements into a local container then sort and pass the container to unique and finally call the combinations function on the local container
1 -- 1 1 2
2 -- 1 1 3
3 -- 1 2 3
4 -- 1 2 3
5 -- 1 1 4
6 -- 1 2 4
7 -- 1 2 4
8 -- 1 3 4
9 -- 1 3 4
10 -- 2 3 4
11 -- 1 1 5
12 -- 1 2 5
13 -- 1 2 5
14 -- 1 3 5
15 -- 1 3 5
16 -- 2 3 5
17 -- 1 4 5
18 -- 1 4 5
19 -- 2 4 5
20 -- 3 4 5
The text was updated successfully, but these errors were encountered: