Skip to content

Instantly share code, notes, and snippets.

@rbrick

rbrick/idek.java Secret

Created November 22, 2015 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbrick/94766d93519b20543e61 to your computer and use it in GitHub Desktop.
Save rbrick/94766d93519b20543e61 to your computer and use it in GitHub Desktop.
for (int i = 0; i < 10_000; i += 100) {
if (i++ == 101) {
for (; i > 100; i -= 50) {
if (i % 2 == 0) {
i |= 4;
while ((i & 4) == 0) {
i -= 2;
if (i % 4 == 0) {
i &= i & ~4;
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment