From 6b020c7180a3c50f0b54a13bf9f6594f37efa5de Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Mon, 22 Sep 2025 12:19:37 -0400 Subject: [PATCH] Add an example for puzzle suggestions --- PUZZLE_TEMPLATE.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 PUZZLE_TEMPLATE.md diff --git a/PUZZLE_TEMPLATE.md b/PUZZLE_TEMPLATE.md new file mode 100644 index 0000000..66db400 --- /dev/null +++ b/PUZZLE_TEMPLATE.md @@ -0,0 +1,17 @@ +# TEMPLATE + +This shows what a good description looks like when suggesting a puzzle. + +## Example: Multi-line Snippet + +In this snippet: + +``` +Time.current.strftime("%Y-%m-%dT%H:%M:%S%z") +``` + +Is the `current` method a Ruby or Rails method? + +## Example: Single Sentence Snippet + +When you have a line like this `hash = { a: 1, b: 2, c: 3 }` and later you call this method `hash.transform_keys(&:to_s)` -- is `transform_keys` a Ruby or Rails method? \ No newline at end of file