opert
Technical User
- May 4, 2011
- 6
Hello,
I have patterns like this:
I would like to break up this and should get the following patterns:
So you can imagine the original one as blocks of 4's
and I should leave every blocks once (in a permutation way so that consider the empty block as being 0's everywhere).
Can anyone help me to solve this?
I have patterns like this:
Code:
0100100110010001
I would like to break up this and should get the following patterns:
Code:
0000100110010001
0100000010010001
0100100100000001
0100100110010000
Code:
0100 1001 1001 0001
and I should leave every blocks once (in a permutation way so that consider the empty block as being 0's everywhere).
Can anyone help me to solve this?