diff --git a/example-puzzles/counting/1/puzzle.moth b/example-puzzles/counting/1/puzzle.moth new file mode 100644 index 0000000..74f185f --- /dev/null +++ b/example-puzzles/counting/1/puzzle.moth @@ -0,0 +1,9 @@ +Author: neale +Summary: counting by ones +Answer: 9 + +This category is about counting. +In it, you will be required to figure out how we're counting, +and count the next value. + +1 2 3 4 5 6 7 8 _ diff --git a/example-puzzles/counting/10/puzzle.moth b/example-puzzles/counting/10/puzzle.moth new file mode 100644 index 0000000..2c0cbb8 --- /dev/null +++ b/example-puzzles/counting/10/puzzle.moth @@ -0,0 +1,12 @@ +Author: neale +Summary: counting by tens in hex +Answer: 0x3c +Answer: 0x3C +Answer: 3c +Answer: 3C + +0xa +0x14 +0x1e +0x28 +0x32 \ No newline at end of file diff --git a/example-puzzles/counting/100/puzzle.moth b/example-puzzles/counting/100/puzzle.moth new file mode 100644 index 0000000..80599e6 --- /dev/null +++ b/example-puzzles/counting/100/puzzle.moth @@ -0,0 +1,13 @@ +Author: neale +Summary: counting by 100s with 8-bit unsigned integers +Answer: 0x20 +Answer: 20 + +0x00 +0x64 +0xc8 +0x2c +0x90 +0xf4 +0x58 +0xbc diff --git a/example-puzzles/counting/2/puzzle.moth b/example-puzzles/counting/2/puzzle.moth new file mode 100644 index 0000000..552d03c --- /dev/null +++ b/example-puzzles/counting/2/puzzle.moth @@ -0,0 +1,5 @@ +Author: neale +Summary: counting by twos +Answer: 16 + +2 4 6 8 10 12 14 _ \ No newline at end of file diff --git a/example-puzzles/counting/5/puzzle.moth b/example-puzzles/counting/5/puzzle.moth new file mode 100644 index 0000000..a67809c --- /dev/null +++ b/example-puzzles/counting/5/puzzle.moth @@ -0,0 +1,5 @@ +Author: neale +Summary: counting by fives +Answer: 40 + +5 10 15 20 25 30 35 _ \ No newline at end of file diff --git a/example-puzzles/counting/50/puzzle.moth b/example-puzzles/counting/50/puzzle.moth new file mode 100644 index 0000000..d82844e --- /dev/null +++ b/example-puzzles/counting/50/puzzle.moth @@ -0,0 +1,17 @@ +Author: neale +Summary: counting by sevens with 4-bit unsigned integers +Answer: 0x4 +Answer: 4 + +0x0 +0x7 +0xe +0x5 +0xc +0x3 +0xa +0x1 +0x8 +0xf +0x6 +0xd \ No newline at end of file