mirror of https://github.com/dirtbags/moth.git
Add a counting example puzzle
This commit is contained in:
parent
a977ba2b09
commit
7480e2d475
|
@ -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 _
|
|
@ -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
|
|
@ -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
|
|
@ -0,0 +1,5 @@
|
|||
Author: neale
|
||||
Summary: counting by twos
|
||||
Answer: 16
|
||||
|
||||
2 4 6 8 10 12 14 _
|
|
@ -0,0 +1,5 @@
|
|||
Author: neale
|
||||
Summary: counting by fives
|
||||
Answer: 40
|
||||
|
||||
5 10 15 20 25 30 35 _
|
|
@ -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
|
Loading…
Reference in New Issue