From 7568a1ee0849d3c8bf5fb5bcc9351b3fff3ac2cd Mon Sep 17 00:00:00 2001 From: Tyler Wardhaugh Date: Mon, 8 Feb 2021 16:07:17 -0800 Subject: prep for challenge --- challenge-099/tyler-wardhaugh/clojure/README.md | 10 +++++----- challenge-099/tyler-wardhaugh/clojure/deps.edn | 6 +++--- challenge-099/tyler-wardhaugh/clojure/pom.xml | 14 +++++++------- challenge-099/tyler-wardhaugh/lua/README.md | 6 +++--- challenge-099/tyler-wardhaugh/python/README.md | 6 +++--- 5 files changed, 21 insertions(+), 21 deletions(-) (limited to 'challenge-099') diff --git a/challenge-099/tyler-wardhaugh/clojure/README.md b/challenge-099/tyler-wardhaugh/clojure/README.md index dbeaac833c..74a213f563 100644 --- a/challenge-099/tyler-wardhaugh/clojure/README.md +++ b/challenge-099/tyler-wardhaugh/clojure/README.md @@ -1,13 +1,13 @@ -# tw.weekly.c98 +# tw.weekly.c99 -The Weekly Challenge - #098 - Tyler Wardhaugh +The Weekly Challenge - #099 - Tyler Wardhaugh ## Usage Run the project directly (shows default output from both tasks): - $ clojure -M -m tw.weekly.c98.core + $ clojure -M -m tw.weekly.c99.core Run the project's tests (which are samples from the task descriptions): @@ -15,11 +15,11 @@ Run the project's tests (which are samples from the task descriptions): Run Task #1 with input - $ clojure -M -m tw.weekly.c98.t1 FILE N + $ clojure -M -m tw.weekly.c99.t1 S P Run Task #2 with input: - $ clojure -M -m tw.weekly.c98.t2 NS N + $ clojure -M -m tw.weekly.c99.t2 S T ## Project Template diff --git a/challenge-099/tyler-wardhaugh/clojure/deps.edn b/challenge-099/tyler-wardhaugh/clojure/deps.edn index 3702e967c4..5af0265ab3 100644 --- a/challenge-099/tyler-wardhaugh/clojure/deps.edn +++ b/challenge-099/tyler-wardhaugh/clojure/deps.edn @@ -9,6 +9,6 @@ :sha "f7ef16dc3b8332b0d77bc0274578ad5270fbfedd"}} :main-opts ["-m" "cognitect.test-runner" "-d" "test"]} - :uberjar {:extra-deps {seancorfield/depstar {:mvn/version "1.0.96"}} - :main-opts ["-m" "hf.depstar.uberjar" "tw.weekly.c96.jar" - "-C" "-m" "tw.weekly.c96"]}}} + :uberjar {:extra-deps {seancorfield/depstar {:mvn/version "1.0.99"}} + :main-opts ["-m" "hf.depstar.uberjar" "tw.weekly.c99.jar" + "-C" "-m" "tw.weekly.c99"]}}} diff --git a/challenge-099/tyler-wardhaugh/clojure/pom.xml b/challenge-099/tyler-wardhaugh/clojure/pom.xml index 04154a698d..b59b0262a4 100644 --- a/challenge-099/tyler-wardhaugh/clojure/pom.xml +++ b/challenge-099/tyler-wardhaugh/clojure/pom.xml @@ -2,11 +2,11 @@ 4.0.0 tw.weekly - tw.weekly.c96 + tw.weekly.c99 0.1.0-SNAPSHOT - tw.weekly.c96 - Challenge #096 - https://github.com/tw.weekly/tw.weekly.c96 + tw.weekly.c99 + Challenge #099 + https://github.com/tw.weekly/tw.weekly.c99 Eclipse Public License @@ -19,9 +19,9 @@ - https://github.com/tw.weekly/tw.weekly.c96 - scm:git:git://github.com/tw.weekly/tw.weekly.c96.git - scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c96.git + https://github.com/tw.weekly/tw.weekly.c99 + scm:git:git://github.com/tw.weekly/tw.weekly.c99.git + scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c99.git HEAD diff --git a/challenge-099/tyler-wardhaugh/lua/README.md b/challenge-099/tyler-wardhaugh/lua/README.md index b653496267..2d19587df0 100644 --- a/challenge-099/tyler-wardhaugh/lua/README.md +++ b/challenge-099/tyler-wardhaugh/lua/README.md @@ -1,17 +1,17 @@ # The Weekly Challenge -The Weekly Challenge - #098 - Tyler Wardhaugh +The Weekly Challenge - #099 - Tyler Wardhaugh ## Usage Run Task 1 with input: - $ ./run.lua ch-1 FILE N + $ ./run.lua ch-1 S P Run Task 2: - $ ./run.lua ch-2 + $ ./run.lua ch-2 S T Run the project's tests (all the samples from the task descriptions plus some others): diff --git a/challenge-099/tyler-wardhaugh/python/README.md b/challenge-099/tyler-wardhaugh/python/README.md index 976f770899..da9be25946 100644 --- a/challenge-099/tyler-wardhaugh/python/README.md +++ b/challenge-099/tyler-wardhaugh/python/README.md @@ -1,7 +1,7 @@ # The Weekly Challenge -The Weekly Challenge - #096 - Tyler Wardhaugh +The Weekly Challenge - #099 - Tyler Wardhaugh ## Usage @@ -10,11 +10,11 @@ Ensure requirements are satified (ideally in venv): Run Task 1: - $ ./ch1.py S + $ ./ch1.py S P Run Task 2: - $ ./ch2.py S1 S2 + $ ./ch2.py S T Run the project's tests (all the samples from the task descriptions plus some others): -- cgit