From cf83ea0d7d8dff17564469fd64cdb4d79eb7fd18 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Wed, 7 Apr 2021 14:36:49 -0600 Subject: [PATCH] Counting example category now demonstrates python IDE --- example-puzzles/counting/1/puzzle.md | 19 +++++++++++++++++++ example-puzzles/counting/1/puzzle.moth | 9 --------- example-puzzles/counting/2/puzzle.md | 15 +++++++++++++++ example-puzzles/counting/2/puzzle.moth | 5 ----- 4 files changed, 34 insertions(+), 14 deletions(-) create mode 100644 example-puzzles/counting/1/puzzle.md delete mode 100644 example-puzzles/counting/1/puzzle.moth create mode 100644 example-puzzles/counting/2/puzzle.md delete mode 100644 example-puzzles/counting/2/puzzle.moth diff --git a/example-puzzles/counting/1/puzzle.md b/example-puzzles/counting/1/puzzle.md new file mode 100644 index 0000000..a688907 --- /dev/null +++ b/example-puzzles/counting/1/puzzle.md @@ -0,0 +1,19 @@ +--- +authors: ["neale"] +debug: + summary: counting by ones +answers: ["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 _ + +Here is a Python program that might help: + +```python +for i in range(20): + print(i) +``` diff --git a/example-puzzles/counting/1/puzzle.moth b/example-puzzles/counting/1/puzzle.moth deleted file mode 100644 index 74f185f..0000000 --- a/example-puzzles/counting/1/puzzle.moth +++ /dev/null @@ -1,9 +0,0 @@ -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/2/puzzle.md b/example-puzzles/counting/2/puzzle.md new file mode 100644 index 0000000..e46f5b2 --- /dev/null +++ b/example-puzzles/counting/2/puzzle.md @@ -0,0 +1,15 @@ +--- +authors: ["neale"] +debug: + summary: counting by twos +answers: ["16"] +--- + +2 4 6 8 10 12 14 _ + +Here is a Python program that might help: + +```python +for i in range(2, 20, 2): + print(i) +``` diff --git a/example-puzzles/counting/2/puzzle.moth b/example-puzzles/counting/2/puzzle.moth deleted file mode 100644 index 552d03c..0000000 --- a/example-puzzles/counting/2/puzzle.moth +++ /dev/null @@ -1,5 +0,0 @@ -Author: neale -Summary: counting by twos -Answer: 16 - -2 4 6 8 10 12 14 _ \ No newline at end of file