trackler 2.0.5.2 → 2.0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/trackler/version.rb +1 -1
- data/tracks/fsharp/exercises/alphametics/HINTS.md +4 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2c4897c537ea6d0d1e07f9d60f2144b9e20dcfa
|
|
4
|
+
data.tar.gz: d5905ad832fd6d67ee4deb73fc90055395358274
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39e0d776ae819ac7c800cd3628f5b48464360dd1f1c5816fbc2d8a9dd854df00d4bdcf30c5fed1860fd2ff20fb137ee5006c6757886d97ea61c3caa17384fe16
|
|
7
|
+
data.tar.gz: 9e8540751a3babb28b3696ceffa4c88ae862e26eff5f9b52f9204ae671985fc1b28f6f413b70d5bb0ce86980849a17b1a2fd9181e95fb15bc6e01961eb4c92b0
|
data/lib/trackler/version.rb
CHANGED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
## Hints
|
|
2
|
+
- To parse the text, you could try to use the [FParsec](http://www.quanttec.com/fparsec/tutorial.html) library.
|
|
3
|
+
- You can solve this exercise with a brute force algorithm, but this will possibly have a poor runtime performance.
|
|
4
|
+
Try to find a more sophisticated solution. Hint: You could try the column-wise addition algorithm that is usually taught in school.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trackler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.5.
|
|
4
|
+
version: 2.0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katrina Owen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-12-
|
|
11
|
+
date: 2016-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -2384,6 +2384,7 @@ files:
|
|
|
2384
2384
|
- tracks/fsharp/exercises/allergies/Example.fs
|
|
2385
2385
|
- tracks/fsharp/exercises/alphametics/AlphameticsTest.fs
|
|
2386
2386
|
- tracks/fsharp/exercises/alphametics/Example.fs
|
|
2387
|
+
- tracks/fsharp/exercises/alphametics/HINTS.md
|
|
2387
2388
|
- tracks/fsharp/exercises/anagram/AnagramTest.fs
|
|
2388
2389
|
- tracks/fsharp/exercises/anagram/Example.fs
|
|
2389
2390
|
- tracks/fsharp/exercises/app.config
|