summaryrefslogtreecommitdiff
path: root/content/other/josephus2.cpp
blob: 33544ea72232e9e626cd4705b01c4413c37ce5d3 (plain)
1
2
3
4
5
int rotateLeft(int n) { // Der letzte Überlebende, 1-basiert.
	int bits = __lg(n);
	n ^= 1 << bits;
	return 2 * n + 1;
}