Skip to content

Instantly share code, notes, and snippets.

View jemand771's full-sized avatar

Willy jemand771

  • Intenta ARC GmbH
  • Germany
  • 12:20 (UTC +02:00)
  • X @jemand771
View GitHub Profile
hello: world
foo:
- bar: 5
yay: true
- baz: 5
nay: false
@jemand771
jemand771 / CrackTheCode.java
Last active October 6, 2018 11:41
This will solve the "crack the code" riddle at https://www.instagram.com/p/BoeZ7IvC5gM/ (its 042)
import java.util.ArrayList;
public class CrackTheCode2 {
public static void main(String[] args) {
int totalPoss = 0;
for (int a = 0; a < 10; a++) {
for (int b = 0; b < 10; b++) {