From fa5731052dcccec7fd0c77d96266690d2841b815 Mon Sep 17 00:00:00 2001 From: Tyler Wardhaugh Date: Mon, 7 Dec 2020 12:06:06 -0800 Subject: Ch90: prep for challenge --- challenge-090/tyler-wardhaugh/clojure/README.md | 10 +++++----- challenge-090/tyler-wardhaugh/clojure/deps.edn | 10 +++------- challenge-090/tyler-wardhaugh/clojure/pom.xml | 24 +++++++----------------- challenge-090/tyler-wardhaugh/lua/README.md | 6 +++--- 4 files changed, 18 insertions(+), 32 deletions(-) diff --git a/challenge-090/tyler-wardhaugh/clojure/README.md b/challenge-090/tyler-wardhaugh/clojure/README.md index f5a89af18d..41000b8199 100644 --- a/challenge-090/tyler-wardhaugh/clojure/README.md +++ b/challenge-090/tyler-wardhaugh/clojure/README.md @@ -1,13 +1,13 @@ -# tw.weekly.c89 +# tw.weekly.c90 -The Weekly Challenge - #089 - Tyler Wardhaugh +The Weekly Challenge - #090 - Tyler Wardhaugh ## Usage Run the project directly (shows default output from both tasks): - $ clojure -M -m tw.weekly.c89.core + $ clojure -M -m tw.weekly.c90.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.c89.t1 N + $ clojure -M -m tw.weekly.c90.t1 DNA Run Task #2: - $ clojure -M -m tw.weekly.c89.t2 + $ clojure -M -m tw.weekly.c90.t2 A B ## Project Template diff --git a/challenge-090/tyler-wardhaugh/clojure/deps.edn b/challenge-090/tyler-wardhaugh/clojure/deps.edn index cfd5d782d1..1fae9ef933 100644 --- a/challenge-090/tyler-wardhaugh/clojure/deps.edn +++ b/challenge-090/tyler-wardhaugh/clojure/deps.edn @@ -1,9 +1,5 @@ {:paths ["src" "resources"] - :deps {org.clojure/clojure {:mvn/version "1.10.1"} - org.clojure/core.logic {:mvn/version "1.0.0"} - org.clojure/math.combinatorics {:mvn/version "0.1.6"} - org.clojure/math.numeric-tower {:mvn/version "0.0.4"} - org.clojure/tools.macro {:mvn/version "0.1.2"}} + :deps {org.clojure/clojure {:mvn/version "1.10.1"}} :aliases {:test {:extra-paths ["test"] :extra-deps {org.clojure/test.check {:mvn/version "1.0.0"}}} @@ -14,5 +10,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.c88.jar" - "-C" "-m" "tw.weekly.c88"]}}} + :main-opts ["-m" "hf.depstar.uberjar" "tw.weekly.c90.jar" + "-C" "-m" "tw.weekly.c90"]}}} diff --git a/challenge-090/tyler-wardhaugh/clojure/pom.xml b/challenge-090/tyler-wardhaugh/clojure/pom.xml index 3097f51f8e..bc8a82e4cd 100644 --- a/challenge-090/tyler-wardhaugh/clojure/pom.xml +++ b/challenge-090/tyler-wardhaugh/clojure/pom.xml @@ -2,11 +2,11 @@ 4.0.0 tw.weekly - tw.weekly.c89 + tw.weekly.c90 0.1.0-SNAPSHOT - tw.weekly.c89 - Challenge #089 - https://github.com/tw.weekly/tw.weekly.c89 + tw.weekly.c90 + Challenge #090 + https://github.com/tw.weekly/tw.weekly.c90 Eclipse Public License @@ -19,9 +19,9 @@ - https://github.com/tw.weekly/tw.weekly.c89 - scm:git:git://github.com/tw.weekly/tw.weekly.c89.git - scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c89.git + https://github.com/tw.weekly/tw.weekly.c90 + scm:git:git://github.com/tw.weekly/tw.weekly.c90.git + scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c90.git HEAD @@ -30,16 +30,6 @@ clojure 1.10.1 - - net.mikera - core.matrix - 0.62.0 - - - org.clojure - math.numeric-tower - 0.0.4 - src diff --git a/challenge-090/tyler-wardhaugh/lua/README.md b/challenge-090/tyler-wardhaugh/lua/README.md index d2f91b15fe..8772dac9c1 100644 --- a/challenge-090/tyler-wardhaugh/lua/README.md +++ b/challenge-090/tyler-wardhaugh/lua/README.md @@ -1,17 +1,17 @@ # The Weekly Challenge -The Weekly Challenge - #089 - Tyler Wardhaugh +The Weekly Challenge - #090 - Tyler Wardhaugh ## Usage Run Task 1: - $ ./run.lua ch-1 N + $ ./run.lua ch-1 DNA Run Task 2: - $ ./run.lua ch-2 MATRIX-FILE + $ ./run.lua ch-2 A B Run the project's tests (all the samples from the task descriptions plus some others): -- cgit