From bf55bacf05338e510937a11abd0850b00bfa0307 Mon Sep 17 00:00:00 2001 From: Tyler Wardhaugh Date: Thu, 19 Nov 2020 22:39:46 -0800 Subject: Ch87: prep for challenge --- challenge-087/tyler-wardhaugh/clojure/README.md | 10 +++++----- challenge-087/tyler-wardhaugh/clojure/deps.edn | 5 ++--- challenge-087/tyler-wardhaugh/clojure/pom.xml | 19 +++++++------------ challenge-087/tyler-wardhaugh/lua/README.md | 7 +++---- 4 files changed, 17 insertions(+), 24 deletions(-) diff --git a/challenge-087/tyler-wardhaugh/clojure/README.md b/challenge-087/tyler-wardhaugh/clojure/README.md index ada4806466..7a610a7578 100644 --- a/challenge-087/tyler-wardhaugh/clojure/README.md +++ b/challenge-087/tyler-wardhaugh/clojure/README.md @@ -1,13 +1,13 @@ -# tw.weekly.c86 +# tw.weekly.c87 -The Weekly Challenge - #086 - Tyler Wardhaugh +The Weekly Challenge - #087 - Tyler Wardhaugh ## Usage Run the project directly (shows default output from both tasks): - $ clojure -M -m tw.weekly.c86.core + $ clojure -M -m tw.weekly.c87.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.c86.t1 A N1 N2 N3... + $ clojure -M -m tw.weekly.c87.t1 N1 N2 N3... Run Task #2 with input: - $ clojure -M -m tw.weekly.c86.t2 SUDOKO-FILE + $ clojure -M -m tw.weekly.c87.t2 MATRIX-FILE ## Project Template diff --git a/challenge-087/tyler-wardhaugh/clojure/deps.edn b/challenge-087/tyler-wardhaugh/clojure/deps.edn index 18ea25ec63..096b24ac34 100644 --- a/challenge-087/tyler-wardhaugh/clojure/deps.edn +++ b/challenge-087/tyler-wardhaugh/clojure/deps.edn @@ -1,6 +1,5 @@ {:paths ["src" "resources"] :deps {org.clojure/clojure {:mvn/version "1.10.1"} - org.clojure/core.logic {:mvn/version "1.0.0"} net.mikera/core.matrix {:mvn/version "0.62.0"}} :aliases {:test {:extra-paths ["test"] @@ -12,5 +11,5 @@ :main-opts ["-m" "cognitect.test-runner" "-d" "test"]} :uberjar {:extra-deps {seancorfield/depstar {:mvn/version "1.0.94"}} - :main-opts ["-m" "hf.depstar.uberjar" "tw.weekly.c86.jar" - "-C" "-m" "tw.weekly.c86"]}}} + :main-opts ["-m" "hf.depstar.uberjar" "tw.weekly.c87.jar" + "-C" "-m" "tw.weekly.c87"]}}} diff --git a/challenge-087/tyler-wardhaugh/clojure/pom.xml b/challenge-087/tyler-wardhaugh/clojure/pom.xml index cc507f3605..2eeb46cb8c 100644 --- a/challenge-087/tyler-wardhaugh/clojure/pom.xml +++ b/challenge-087/tyler-wardhaugh/clojure/pom.xml @@ -2,11 +2,11 @@ 4.0.0 tw.weekly - tw.weekly.c86 + tw.weekly.c87 0.1.0-SNAPSHOT - tw.weekly.c86 - Challenge #086 - https://github.com/tw.weekly/tw.weekly.c86 + tw.weekly.c87 + Challenge #087 + https://github.com/tw.weekly/tw.weekly.c87 Eclipse Public License @@ -19,9 +19,9 @@ - https://github.com/tw.weekly/tw.weekly.c86 - scm:git:git://github.com/tw.weekly/tw.weekly.c86.git - scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c86.git + https://github.com/tw.weekly/tw.weekly.c87 + scm:git:git://github.com/tw.weekly/tw.weekly.c87.git + scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c87.git HEAD @@ -30,11 +30,6 @@ clojure 1.10.1 - - org.clojure - core.logic - 1.0.0 - net.mikera core.matrix diff --git a/challenge-087/tyler-wardhaugh/lua/README.md b/challenge-087/tyler-wardhaugh/lua/README.md index ad70c646d1..62141395f2 100644 --- a/challenge-087/tyler-wardhaugh/lua/README.md +++ b/challenge-087/tyler-wardhaugh/lua/README.md @@ -1,17 +1,17 @@ # The Weekly Challenge -The Weekly Challenge - #086 - Tyler Wardhaugh +The Weekly Challenge - #087 - Tyler Wardhaugh ## Usage Run Task 1: - $ ./run.lua ch-1 A N1 N2 N3... + $ ./run.lua ch-1 N1 N2 N3... Run Task 2: - $ ./run.lua ch-2 SUDOKO-FILE + $ ./run.lua ch-2 MATRIX-FILE Run the project's tests (all the samples from the task descriptions plus some others): @@ -21,4 +21,3 @@ Run the project's tests (all the samples from the task descriptions plus some ot * [Lua](https://www.lua.org/) 5.3 * [LuaRocks](https://luarocks.org/) * [busted](https://olivinelabs.com/busted/) (a unit testing framework) -* [Moses](https://yonaba.github.io/Moses/) (a Lua utility-belt library) -- cgit