From 5eeb31e3578b50b15e7831d062e6a1a169c354d7 Mon Sep 17 00:00:00 2001 From: Tyler Wardhaugh Date: Tue, 13 Oct 2020 09:10:27 -0700 Subject: Ch82: prep for tasks --- challenge-082/tyler-wardhaugh/clojure/README.md | 10 +++++----- challenge-082/tyler-wardhaugh/clojure/deps.edn | 7 +++---- challenge-082/tyler-wardhaugh/clojure/pom.xml | 19 +++++++------------ 3 files changed, 15 insertions(+), 21 deletions(-) diff --git a/challenge-082/tyler-wardhaugh/clojure/README.md b/challenge-082/tyler-wardhaugh/clojure/README.md index 3a0c44fe10..546cb8db65 100644 --- a/challenge-082/tyler-wardhaugh/clojure/README.md +++ b/challenge-082/tyler-wardhaugh/clojure/README.md @@ -1,13 +1,13 @@ -# tw.weekly.c81 +# tw.weekly.c82 -The Weekly Challenge - #081 - Tyler Wardhaugh +The Weekly Challenge - #082 - Tyler Wardhaugh ## Usage Run the project directly (shows default output from both tasks): - $ clojure -M -m tw.weekly.c81.core + $ clojure -M -m tw.weekly.c82.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.c81.t1 A B + $ clojure -M -m tw.weekly.c82.t1 M N Run Task #2 with input: - $ clojure -M -m tw.weekly.c81.t2 INPUT-FILE + $ clojure -M -m tw.weekly.c82.t2 S1 S2 ## Project Template diff --git a/challenge-082/tyler-wardhaugh/clojure/deps.edn b/challenge-082/tyler-wardhaugh/clojure/deps.edn index 8bbe260e55..4010bedaeb 100644 --- a/challenge-082/tyler-wardhaugh/clojure/deps.edn +++ b/challenge-082/tyler-wardhaugh/clojure/deps.edn @@ -1,6 +1,5 @@ {:paths ["src" "resources"] - :deps {org.clojure/clojure {:mvn/version "1.10.1"} - net.cgrand/xforms {:mvn/version "0.19.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"}}} @@ -11,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.c81.jar" - "-C" "-m" "tw.weekly.c81"]}}} + :main-opts ["-m" "hf.depstar.uberjar" "tw.weekly.c82.jar" + "-C" "-m" "tw.weekly.c82"]}}} diff --git a/challenge-082/tyler-wardhaugh/clojure/pom.xml b/challenge-082/tyler-wardhaugh/clojure/pom.xml index a997eb3a20..6fead6ac04 100644 --- a/challenge-082/tyler-wardhaugh/clojure/pom.xml +++ b/challenge-082/tyler-wardhaugh/clojure/pom.xml @@ -2,11 +2,11 @@ 4.0.0 tw.weekly - tw.weekly.c81 + tw.weekly.c82 0.1.0-SNAPSHOT - tw.weekly.c81 - Challenge #081 - https://github.com/tw.weekly/tw.weekly.c81 + tw.weekly.c82 + Challenge #082 + https://github.com/tw.weekly/tw.weekly.c82 Eclipse Public License @@ -19,9 +19,9 @@ - https://github.com/tw.weekly/tw.weekly.c81 - scm:git:git://github.com/tw.weekly/tw.weekly.c81.git - scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c81.git + https://github.com/tw.weekly/tw.weekly.c82 + scm:git:git://github.com/tw.weekly/tw.weekly.c82.git + scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c82.git HEAD @@ -30,11 +30,6 @@ clojure 1.10.1 - - net.cgrand - xforms - 0.19.2 - src -- cgit