Add a counting example puzzle

This commit is contained in:
Neale Pickett 2018-04-12 14:58:12 +00:00
parent 10b4723d9f
commit 025d6743a2
6 changed files with 61 additions and 0 deletions

View File

@ -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 _

View File

@ -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

View File

@ -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

View File

@ -0,0 +1,5 @@
Author: neale
Summary: counting by twos
Answer: 16
2 4 6 8 10 12 14 _

View File

@ -0,0 +1,5 @@
Author: neale
Summary: counting by fives
Answer: 40
5 10 15 20 25 30 35 _

View File

@ -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