I saw a loop which I've never seen before:
for (int i = 0; i < (1 << list.Count); i++)
I can't understand what (1 << list.Count)
means, maybe someone could explain me this?
I saw a loop which I've never seen before:
for (int i = 0; i < (1 << list.Count); i++)
I can't understand what (1 << list.Count)
means, maybe someone could explain me this?