diff options
| author | Tyler Wardhaugh <tyler.wardhaugh@gmail.com> | 2020-10-13 09:10:27 -0700 |
|---|---|---|
| committer | Tyler Wardhaugh <tyler.wardhaugh@gmail.com> | 2020-10-13 09:10:27 -0700 |
| commit | 5eeb31e3578b50b15e7831d062e6a1a169c354d7 (patch) | |
| tree | 2bf0f92cf80af416e1c9e083045579eaa1ac1929 | |
| parent | 73bd8af8d58941b8066141bc3fc64cf4165d80b5 (diff) | |
| download | perlweeklychallenge-club-5eeb31e3578b50b15e7831d062e6a1a169c354d7.tar.gz perlweeklychallenge-club-5eeb31e3578b50b15e7831d062e6a1a169c354d7.tar.bz2 perlweeklychallenge-club-5eeb31e3578b50b15e7831d062e6a1a169c354d7.zip | |
Ch82: prep for tasks
| -rw-r--r-- | challenge-082/tyler-wardhaugh/clojure/README.md | 10 | ||||
| -rw-r--r-- | challenge-082/tyler-wardhaugh/clojure/deps.edn | 7 | ||||
| -rw-r--r-- | 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 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>tw.weekly</groupId> - <artifactId>tw.weekly.c81</artifactId> + <artifactId>tw.weekly.c82</artifactId> <version>0.1.0-SNAPSHOT</version> - <name>tw.weekly.c81</name> - <description>Challenge #081</description> - <url>https://github.com/tw.weekly/tw.weekly.c81</url> + <name>tw.weekly.c82</name> + <description>Challenge #082</description> + <url>https://github.com/tw.weekly/tw.weekly.c82</url> <licenses> <license> <name>Eclipse Public License</name> @@ -19,9 +19,9 @@ </developer> </developers> <scm> - <url>https://github.com/tw.weekly/tw.weekly.c81</url> - <connection>scm:git:git://github.com/tw.weekly/tw.weekly.c81.git</connection> - <developerConnection>scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c81.git</developerConnection> + <url>https://github.com/tw.weekly/tw.weekly.c82</url> + <connection>scm:git:git://github.com/tw.weekly/tw.weekly.c82.git</connection> + <developerConnection>scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c82.git</developerConnection> <tag>HEAD</tag> </scm> <dependencies> @@ -30,11 +30,6 @@ <artifactId>clojure</artifactId> <version>1.10.1</version> </dependency> - <dependency> - <groupId>net.cgrand</groupId> - <artifactId>xforms</artifactId> - <version>0.19.2</version> - </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> |
