I am trying to fill an array with boolean values such that I return a different array each time, eventually having returned all possible arrays.
Example output for array size 5: [True, True, True, True, True] Then: [True, True, True, True, False] And so on and so forth...
I am aware of code that would fill a smaller array with all combinations from a bigger array but i can not do it the other way around