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