aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-086/tyler-wardhaugh/clojure/README.md10
-rw-r--r--challenge-086/tyler-wardhaugh/clojure/deps.edn8
-rw-r--r--challenge-086/tyler-wardhaugh/clojure/pom.xml14
-rw-r--r--challenge-086/tyler-wardhaugh/lua/README.md6
4 files changed, 18 insertions, 20 deletions
diff --git a/challenge-086/tyler-wardhaugh/clojure/README.md b/challenge-086/tyler-wardhaugh/clojure/README.md
index 32d800bdc9..ada4806466 100644
--- a/challenge-086/tyler-wardhaugh/clojure/README.md
+++ b/challenge-086/tyler-wardhaugh/clojure/README.md
@@ -1,13 +1,13 @@
-# tw.weekly.c85
+# tw.weekly.c86
-The Weekly Challenge - #085 - Tyler Wardhaugh
+The Weekly Challenge - #086 - Tyler Wardhaugh
## Usage
Run the project directly (shows default output from both tasks):
- $ clojure -M -m tw.weekly.c85.core
+ $ clojure -M -m tw.weekly.c86.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.c85.t1 A1 A2 A3...
+ $ clojure -M -m tw.weekly.c86.t1 A N1 N2 N3...
Run Task #2 with input:
- $ clojure -M -m tw.weekly.c85.t2 N
+ $ clojure -M -m tw.weekly.c86.t2 SUDOKO-FILE
## Project Template
diff --git a/challenge-086/tyler-wardhaugh/clojure/deps.edn b/challenge-086/tyler-wardhaugh/clojure/deps.edn
index 71a0090da5..62ba0cd3ca 100644
--- a/challenge-086/tyler-wardhaugh/clojure/deps.edn
+++ b/challenge-086/tyler-wardhaugh/clojure/deps.edn
@@ -1,7 +1,5 @@
{:paths ["src" "resources"]
- :deps {org.clojure/clojure {:mvn/version "1.10.1"}
- org.clojure/math.combinatorics {:mvn/version "0.1.6"}
- org.clojure/math.numeric-tower {:mvn/version "0.0.4"}}
+ :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"}}}
@@ -12,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.c84.jar"
- "-C" "-m" "tw.weekly.c84"]}}}
+ :main-opts ["-m" "hf.depstar.uberjar" "tw.weekly.c86.jar"
+ "-C" "-m" "tw.weekly.c86"]}}}
diff --git a/challenge-086/tyler-wardhaugh/clojure/pom.xml b/challenge-086/tyler-wardhaugh/clojure/pom.xml
index 75dbd11d47..05bb65ba38 100644
--- a/challenge-086/tyler-wardhaugh/clojure/pom.xml
+++ b/challenge-086/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.c85</artifactId>
+ <artifactId>tw.weekly.c86</artifactId>
<version>0.1.0-SNAPSHOT</version>
- <name>tw.weekly.c85</name>
- <description>Challenge #085</description>
- <url>https://github.com/tw.weekly/tw.weekly.c85</url>
+ <name>tw.weekly.c86</name>
+ <description>Challenge #086</description>
+ <url>https://github.com/tw.weekly/tw.weekly.c86</url>
<licenses>
<license>
<name>Eclipse Public License</name>
@@ -19,9 +19,9 @@
</developer>
</developers>
<scm>
- <url>https://github.com/tw.weekly/tw.weekly.c85</url>
- <connection>scm:git:git://github.com/tw.weekly/tw.weekly.c85.git</connection>
- <developerConnection>scm:git:ssh://git@github.com/tw.weekly/tw.weekly.c85.git</developerConnection>
+ <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>
<tag>HEAD</tag>
</scm>
<dependencies>
diff --git a/challenge-086/tyler-wardhaugh/lua/README.md b/challenge-086/tyler-wardhaugh/lua/README.md
index 8c4c54f316..5a776b300d 100644
--- a/challenge-086/tyler-wardhaugh/lua/README.md
+++ b/challenge-086/tyler-wardhaugh/lua/README.md
@@ -1,17 +1,17 @@
# The Weekly Challenge
-The Weekly Challenge - #084 - Tyler Wardhaugh
+The Weekly Challenge - #086 - Tyler Wardhaugh
## Usage
Run Task 1:
- $ ./run.lua ch-1 A1 A2 A3...
+ $ ./run.lua ch-1 A N1 N2 N3...
Run Task 2:
- $ ./run.lua ch-2 N
+ $ ./run.lua ch-2 SUDOKO-FILE
Run the project's tests (all the samples from the task descriptions plus some others):