aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Wardhaugh <tyler.wardhaugh@gmail.com>2020-11-19 22:39:46 -0800
committerTyler Wardhaugh <tyler.wardhaugh@gmail.com>2020-11-19 22:39:46 -0800
commitbf55bacf05338e510937a11abd0850b00bfa0307 (patch)
tree4022ad32616541bc23fa809f3bcfc899eaa7f0bc
parent539df1cb7ea7587aa2a5785dc6db32361a73f44b (diff)
downloadperlweeklychallenge-club-bf55bacf05338e510937a11abd0850b00bfa0307.tar.gz
perlweeklychallenge-club-bf55bacf05338e510937a11abd0850b00bfa0307.tar.bz2
perlweeklychallenge-club-bf55bacf05338e510937a11abd0850b00bfa0307.zip
Ch87: prep for challenge
-rw-r--r--challenge-087/tyler-wardhaugh/clojure/README.md10
-rw-r--r--challenge-087/tyler-wardhaugh/clojure/deps.edn5
-rw-r--r--challenge-087/tyler-wardhaugh/clojure/pom.xml19
-rw-r--r--challenge-087/tyler-wardhaugh/lua/README.md7
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 @@
<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.c86</artifactId>
+ <artifactId>tw.weekly.c87</artifactId>
<version>0.1.0-SNAPSHOT</version>
- <name>tw.weekly.c86</name>
- <description>Challenge #086</description>
- <url>https://github.com/tw.weekly/tw.weekly.c86</url>
+ <name>tw.weekly.c87</name>
+ <description>Challenge #087</description>
+ <url>https://github.com/tw.weekly/tw.weekly.c87</url>
<licenses>
<license>
<name>Eclipse Public License</name>
@@ -19,9 +19,9 @@
</developer>
</developers>
<scm>
- <url>https://github.com/tw.weekly/tw.weekly.c86</url>
- <connection>scm:git:git://github.com/tw.weekly/tw.weekly.c86.git</connection>
- <developerConnection>scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c86.git</developerConnection>
+ <url>https://github.com/tw.weekly/tw.weekly.c87</url>
+ <connection>scm:git:git://github.com/tw.weekly/tw.weekly.c87.git</connection>
+ <developerConnection>scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c87.git</developerConnection>
<tag>HEAD</tag>
</scm>
<dependencies>
@@ -31,11 +31,6 @@
<version>1.10.1</version>
</dependency>
<dependency>
- <groupId>org.clojure</groupId>
- <artifactId>core.logic</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
<groupId>net.mikera</groupId>
<artifactId>core.matrix</artifactId>
<version>0.62.0</version>
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)