trackler 2.2.1.86 → 2.2.1.87
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/problem-specifications/exercises/reverse-string/metadata.yml +0 -1
- data/tracks/bash/CONTRIBUTING.md +129 -28
- data/tracks/bash/config/exercise_readme.go.tmpl +10 -4
- data/tracks/bash/exercises/acronym/README.md +8 -11
- data/tracks/bash/exercises/acronym/{acronym_tests.sh → acronym_test.sh} +0 -0
- data/tracks/bash/exercises/anagram/README.md +6 -1
- data/tracks/bash/exercises/anagram/anagram_test.sh +1 -1
- data/tracks/bash/exercises/armstrong-numbers/README.md +10 -2
- data/tracks/bash/exercises/atbash-cipher/README.md +6 -6
- data/tracks/bash/exercises/bob/README.md +8 -1
- data/tracks/bash/exercises/collatz-conjecture/README.md +11 -2
- data/tracks/bash/exercises/collatz-conjecture/{collatz_test.sh → collatz_conjecture_test.sh} +6 -6
- data/tracks/bash/exercises/difference-of-squares/README.md +6 -1
- data/tracks/bash/exercises/error-handling/README.md +13 -5
- data/tracks/bash/exercises/error-handling/error_handling_test.sh +18 -22
- data/tracks/bash/exercises/error-handling/example.sh +7 -6
- data/tracks/bash/exercises/gigasecond/.meta/hints.md +0 -5
- data/tracks/bash/exercises/gigasecond/README.md +36 -1
- data/tracks/bash/exercises/grains/README.md +10 -2
- data/tracks/bash/exercises/hamming/README.md +6 -1
- data/tracks/bash/exercises/hello-world/README.md +7 -2
- data/tracks/bash/exercises/leap/README.md +7 -2
- data/tracks/bash/exercises/luhn/README.md +7 -2
- data/tracks/bash/exercises/nucleotide-count/README.md +13 -22
- data/tracks/bash/exercises/pangram/README.md +7 -2
- data/tracks/bash/exercises/phone-number/README.md +10 -4
- data/tracks/bash/exercises/raindrops/README.md +6 -1
- data/tracks/bash/exercises/reverse-string/README.md +11 -2
- data/tracks/bash/exercises/rna-transcription/README.md +7 -2
- data/tracks/bash/exercises/roman-numerals/README.md +11 -2
- data/tracks/bash/exercises/triangle/README.md +5 -4
- data/tracks/bash/exercises/two-fer/README.md +7 -9
- data/tracks/bash/exercises/word-count/README.md +6 -2
- data/tracks/bash/exercises/word-count/example.sh +22 -13
- data/tracks/bash/scripts/canonical_data_check.sh +112 -0
- data/tracks/c/exercises/acronym/src/{example.h → acronym.h} +0 -0
- data/tracks/c/exercises/gigasecond/.meta/hints.md +124 -0
- data/tracks/c/exercises/gigasecond/README.md +126 -0
- data/tracks/c/exercises/isogram/src/{example.h → isogram.h} +0 -0
- data/tracks/c/exercises/meetup/.meta/hints.md +124 -0
- data/tracks/c/exercises/meetup/README.md +142 -12
- data/tracks/c/exercises/pangram/src/{example.h → pangram.h} +0 -0
- data/tracks/c/exercises/space-age/.meta/hints.md +124 -0
- data/tracks/c/exercises/space-age/README.md +127 -2
- data/tracks/elisp/bin/test-examples +11 -14
- data/tracks/elisp/config.json +9 -1
- data/tracks/elisp/exercises/acronym/README.md +13 -0
- data/tracks/elisp/exercises/acronym/acronym-test.el +28 -0
- data/tracks/elisp/exercises/acronym/acronym.el +11 -0
- data/tracks/elisp/exercises/acronym/example.el +14 -0
- data/tracks/elisp/exercises/bob/example.el +1 -3
- data/tracks/elisp/exercises/hamming/README.md +2 -0
- data/tracks/elisp/exercises/hamming/hamming-test.el +35 -12
- data/tracks/elisp/exercises/hamming/hamming.el +0 -3
- data/tracks/fsharp/exercises/custom-set/CustomSetTest.fs +206 -132
- data/tracks/fsharp/exercises/custom-set/Example.fs +2 -0
- data/tracks/fsharp/generators/Generators.fs +61 -0
- data/tracks/go/config.json +25 -2
- data/tracks/go/exercises/acronym/acronym_test.go +8 -0
- data/tracks/go/exercises/alphametics/.meta/gen.go +72 -0
- data/tracks/go/exercises/alphametics/.meta/hints.md +38 -0
- data/tracks/go/exercises/alphametics/README.md +93 -0
- data/tracks/go/exercises/alphametics/alphametics_test.go +33 -0
- data/tracks/go/exercises/alphametics/cases_test.go +59 -0
- data/tracks/go/exercises/alphametics/example.go +212 -0
- data/tracks/go/exercises/atbash-cipher/.meta/gen.go +6 -4
- data/tracks/go/exercises/atbash-cipher/cases_test.go +2 -2
- data/tracks/go/exercises/change/.meta/gen.go +7 -5
- data/tracks/go/exercises/change/cases_test.go +2 -2
- data/tracks/go/exercises/collatz-conjecture/.meta/gen.go +5 -3
- data/tracks/go/exercises/collatz-conjecture/cases_test.go +2 -2
- data/tracks/go/exercises/connect/.meta/gen.go +5 -3
- data/tracks/go/exercises/connect/cases_test.go +2 -2
- data/tracks/go/exercises/flatten-array/.meta/gen.go +5 -3
- data/tracks/go/exercises/flatten-array/cases_test.go +2 -2
- data/tracks/go/exercises/meetup/.meta/gen.go +19 -8
- data/tracks/go/exercises/meetup/cases_test.go +2 -2
- data/tracks/go/exercises/simple-linked-list/README.md +47 -0
- data/tracks/go/exercises/simple-linked-list/example.go +74 -0
- data/tracks/go/exercises/simple-linked-list/linked_list_test.go +210 -0
- data/tracks/idris/config.json +2 -2
- data/tracks/java/exercises/all-your-base/.meta/src/reference/java/BaseConverter.java +1 -5
- data/tracks/java/exercises/all-your-base/.meta/version +1 -1
- data/tracks/java/exercises/all-your-base/src/test/java/BaseConverterTest.java +34 -10
- data/tracks/java/exercises/bob/README.md +2 -0
- data/tracks/java/exercises/kindergarten-garden/.meta/version +1 -0
- data/tracks/java/exercises/kindergarten-garden/src/test/java/KindergartenGardenTest.java +0 -55
- data/tracks/java/exercises/meetup/.meta/version +1 -0
- data/tracks/java/exercises/meetup/src/test/java/MeetupTest.java +32 -0
- data/tracks/java/exercises/parallel-letter-frequency/README.md +1 -0
- data/tracks/java/exercises/proverb/README.md +16 -10
- data/tracks/java/exercises/rail-fence-cipher/README.md +5 -6
- data/tracks/java/exercises/two-fer/README.md +1 -1
- data/tracks/java/exercises/word-search/.meta/version +1 -1
- data/tracks/java/exercises/word-search/src/test/java/WordSearcherTest.java +240 -2
- data/tracks/javascript/.eslintignore +0 -1
- data/tracks/javascript/exercises/palindrome-products/example.js +3 -3
- data/tracks/kotlin/docs/INSTALLATION.md +77 -68
- data/tracks/kotlin/docs/TESTS.md +41 -39
- data/tracks/perl6/exercises/acronym/acronym.t +20 -8
- data/tracks/perl6/exercises/acronym/example.yaml +1 -1
- data/tracks/perl6/exercises/all-your-base/all-your-base.t +108 -66
- data/tracks/perl6/exercises/all-your-base/example.yaml +2 -2
- data/tracks/perl6/exercises/allergies/allergies.t +39 -15
- data/tracks/perl6/exercises/allergies/example.yaml +2 -2
- data/tracks/perl6/exercises/anagram/anagram.t +73 -40
- data/tracks/perl6/exercises/anagram/example.yaml +1 -1
- data/tracks/perl6/exercises/atbash-cipher/atbash-cipher.t +38 -15
- data/tracks/perl6/exercises/atbash-cipher/example.yaml +1 -1
- data/tracks/perl6/exercises/bob/bob.t +77 -27
- data/tracks/perl6/exercises/bob/example.yaml +1 -1
- data/tracks/perl6/exercises/flatten-array/example.yaml +1 -1
- data/tracks/perl6/exercises/flatten-array/flatten-array.t +20 -8
- data/tracks/perl6/exercises/luhn/example.yaml +1 -1
- data/tracks/perl6/exercises/luhn/luhn.t +42 -16
- data/tracks/perl6/exercises/roman-numerals/README.md +68 -0
- data/tracks/php/exercises/gigasecond/gigasecond_test.php +1 -1
- data/tracks/python/docs/ABOUT.md +2 -2
- metadata +27 -10
- data/tracks/bash/docs/EXERCISE_README_INSERT.md +0 -3
- data/tracks/bash/exercises/word-count/example.awk +0 -12
- data/tracks/java/exercises/alphametics/src/main/java/.keep +0 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Roman Numerals
|
|
2
|
+
|
|
3
|
+
Write a function to convert from normal numbers to Roman Numerals.
|
|
4
|
+
|
|
5
|
+
The Romans were a clever bunch. They conquered most of Europe and ruled
|
|
6
|
+
it for hundreds of years. They invented concrete and straight roads and
|
|
7
|
+
even bikinis. One thing they never discovered though was the number
|
|
8
|
+
zero. This made writing and dating extensive histories of their exploits
|
|
9
|
+
slightly more challenging, but the system of numbers they came up with
|
|
10
|
+
is still in use today. For example the BBC uses Roman numerals to date
|
|
11
|
+
their programmes.
|
|
12
|
+
|
|
13
|
+
The Romans wrote numbers using letters - I, V, X, L, C, D, M. (notice
|
|
14
|
+
these letters have lots of straight lines and are hence easy to hack
|
|
15
|
+
into stone tablets).
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
1 => I
|
|
19
|
+
10 => X
|
|
20
|
+
7 => VII
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
There is no need to be able to convert numbers larger than about 3000.
|
|
24
|
+
(The Romans themselves didn't tend to go any higher)
|
|
25
|
+
|
|
26
|
+
Wikipedia says: Modern Roman numerals ... are written by expressing each
|
|
27
|
+
digit separately starting with the left most digit and skipping any
|
|
28
|
+
digit with a value of zero.
|
|
29
|
+
|
|
30
|
+
To see this in practice, consider the example of 1990.
|
|
31
|
+
|
|
32
|
+
In Roman numerals 1990 is MCMXC:
|
|
33
|
+
|
|
34
|
+
1000=M
|
|
35
|
+
900=CM
|
|
36
|
+
90=XC
|
|
37
|
+
|
|
38
|
+
2008 is written as MMVIII:
|
|
39
|
+
|
|
40
|
+
2000=MM
|
|
41
|
+
8=VIII
|
|
42
|
+
|
|
43
|
+
See also: http://www.novaroma.org/via_romana/numbers.html
|
|
44
|
+
|
|
45
|
+
## Resources
|
|
46
|
+
|
|
47
|
+
Remember to check out the Perl 6 [documentation](https://docs.perl6.org/) and
|
|
48
|
+
[resources](https://perl6.org/resources/) pages for information, tips, and
|
|
49
|
+
examples if you get stuck.
|
|
50
|
+
|
|
51
|
+
## Running the tests
|
|
52
|
+
|
|
53
|
+
There is a test suite and module included with the exercise.
|
|
54
|
+
The test suite (a file with the extension `.t`) will attempt to run routines
|
|
55
|
+
from the module (a file with the extension `.pm6`).
|
|
56
|
+
Add/modify routines in the module so that the tests will pass! You can view the
|
|
57
|
+
test data by executing the command `perl6 --doc *.t` (\* being the name of the
|
|
58
|
+
test suite), and run the test suite for the exercise by executing the command
|
|
59
|
+
`prove . --exec=perl6` in the exercise directory.
|
|
60
|
+
You can also add the `-v` flag e.g. `prove . --exec=perl6 -v` to display all
|
|
61
|
+
tests, including any optional tests marked as 'TODO'.
|
|
62
|
+
|
|
63
|
+
## Source
|
|
64
|
+
|
|
65
|
+
The Roman Numeral Kata [http://codingdojo.org/cgi-bin/index.pl?KataRomanNumerals](http://codingdojo.org/cgi-bin/index.pl?KataRomanNumerals)
|
|
66
|
+
|
|
67
|
+
## Submitting Incomplete Solutions
|
|
68
|
+
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
|
|
@@ -67,7 +67,7 @@ class GigasecondTest extends PHPUnit\Framework\TestCase
|
|
|
67
67
|
|
|
68
68
|
public function testYourself()
|
|
69
69
|
{
|
|
70
|
-
// Replace the string "
|
|
70
|
+
// Replace the string "your_birthday" with your birthday's datestring
|
|
71
71
|
|
|
72
72
|
$this->markTestSkipped("Skip");
|
|
73
73
|
$your_birthday = GigasecondTest::dateSetup("your_birthday");
|
data/tracks/python/docs/ABOUT.md
CHANGED
|
@@ -9,7 +9,7 @@ This is often invisible to the beginning programmer, but if there are uses for w
|
|
|
9
9
|
|
|
10
10
|
Python was started by Guido van Rossum in 1989.
|
|
11
11
|
Its name is an homage to the comedy troupe Monty Python.
|
|
12
|
-
Python 2 is used widely but support may end by 2020.
|
|
12
|
+
Python 2 is used widely but support [may end by 2020](https://www.python.org/dev/peps/pep-0373/#id2).
|
|
13
13
|
Python 3 was introduced in 2008 and is beginning to be adopted more widely.
|
|
14
14
|
They are similar, but users will encounter [some differences](http://blog.teamtreehouse.com/python-2-vs-python-3).
|
|
15
|
-
Python development is shepherded by [The Python Software Foundation](https://www.python.org/about/) and there are active community-based user groups worldwide.
|
|
15
|
+
Python development is shepherded by [The Python Software Foundation](https://www.python.org/about/) and there are active community-based user groups worldwide.
|
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.2.1.
|
|
4
|
+
version: 2.2.1.87
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Katrina Owen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|
|
@@ -600,7 +600,6 @@ files:
|
|
|
600
600
|
- tracks/bash/config/exercise_readme.go.tmpl
|
|
601
601
|
- tracks/bash/config/maintainers.json
|
|
602
602
|
- tracks/bash/docs/ABOUT.md
|
|
603
|
-
- tracks/bash/docs/EXERCISE_README_INSERT.md
|
|
604
603
|
- tracks/bash/docs/INSTALLATION.md
|
|
605
604
|
- tracks/bash/docs/LEARNING.md
|
|
606
605
|
- tracks/bash/docs/MAINTAINING.md
|
|
@@ -608,7 +607,7 @@ files:
|
|
|
608
607
|
- tracks/bash/docs/SNIPPET.txt
|
|
609
608
|
- tracks/bash/docs/TESTS.md
|
|
610
609
|
- tracks/bash/exercises/acronym/README.md
|
|
611
|
-
- tracks/bash/exercises/acronym/
|
|
610
|
+
- tracks/bash/exercises/acronym/acronym_test.sh
|
|
612
611
|
- tracks/bash/exercises/acronym/example.sh
|
|
613
612
|
- tracks/bash/exercises/anagram/README.md
|
|
614
613
|
- tracks/bash/exercises/anagram/anagram_test.sh
|
|
@@ -623,7 +622,7 @@ files:
|
|
|
623
622
|
- tracks/bash/exercises/bob/bob_test.sh
|
|
624
623
|
- tracks/bash/exercises/bob/example.sh
|
|
625
624
|
- tracks/bash/exercises/collatz-conjecture/README.md
|
|
626
|
-
- tracks/bash/exercises/collatz-conjecture/
|
|
625
|
+
- tracks/bash/exercises/collatz-conjecture/collatz_conjecture_test.sh
|
|
627
626
|
- tracks/bash/exercises/collatz-conjecture/example.sh
|
|
628
627
|
- tracks/bash/exercises/difference-of-squares/README.md
|
|
629
628
|
- tracks/bash/exercises/difference-of-squares/difference_of_squares_test.sh
|
|
@@ -679,13 +678,13 @@ files:
|
|
|
679
678
|
- tracks/bash/exercises/two-fer/example.sh
|
|
680
679
|
- tracks/bash/exercises/two-fer/two_fer_test.sh
|
|
681
680
|
- tracks/bash/exercises/word-count/README.md
|
|
682
|
-
- tracks/bash/exercises/word-count/example.awk
|
|
683
681
|
- tracks/bash/exercises/word-count/example.sh
|
|
684
682
|
- tracks/bash/exercises/word-count/word_count_test.sh
|
|
685
683
|
- tracks/bash/img/canonical-data-example.png
|
|
686
684
|
- tracks/bash/img/create-pr.png
|
|
687
685
|
- tracks/bash/img/fork-repository.png
|
|
688
686
|
- tracks/bash/img/icon.png
|
|
687
|
+
- tracks/bash/scripts/canonical_data_check.sh
|
|
689
688
|
- tracks/c/.git
|
|
690
689
|
- tracks/c/.github/stale.yml
|
|
691
690
|
- tracks/c/.gitignore
|
|
@@ -709,8 +708,8 @@ files:
|
|
|
709
708
|
- tracks/c/docs/TESTS.md
|
|
710
709
|
- tracks/c/exercises/acronym/README.md
|
|
711
710
|
- tracks/c/exercises/acronym/makefile
|
|
711
|
+
- tracks/c/exercises/acronym/src/acronym.h
|
|
712
712
|
- tracks/c/exercises/acronym/src/example.c
|
|
713
|
-
- tracks/c/exercises/acronym/src/example.h
|
|
714
713
|
- tracks/c/exercises/acronym/test/test_acronym.c
|
|
715
714
|
- tracks/c/exercises/acronym/test/vendor/unity.c
|
|
716
715
|
- tracks/c/exercises/acronym/test/vendor/unity.h
|
|
@@ -814,6 +813,7 @@ files:
|
|
|
814
813
|
- tracks/c/exercises/difference-of-squares/test/vendor/unity.c
|
|
815
814
|
- tracks/c/exercises/difference-of-squares/test/vendor/unity.h
|
|
816
815
|
- tracks/c/exercises/difference-of-squares/test/vendor/unity_internals.h
|
|
816
|
+
- tracks/c/exercises/gigasecond/.meta/hints.md
|
|
817
817
|
- tracks/c/exercises/gigasecond/README.md
|
|
818
818
|
- tracks/c/exercises/gigasecond/makefile
|
|
819
819
|
- tracks/c/exercises/gigasecond/src/example.c
|
|
@@ -850,7 +850,7 @@ files:
|
|
|
850
850
|
- tracks/c/exercises/isogram/README.md
|
|
851
851
|
- tracks/c/exercises/isogram/makefile
|
|
852
852
|
- tracks/c/exercises/isogram/src/example.c
|
|
853
|
-
- tracks/c/exercises/isogram/src/
|
|
853
|
+
- tracks/c/exercises/isogram/src/isogram.h
|
|
854
854
|
- tracks/c/exercises/isogram/test/test_isogram.c
|
|
855
855
|
- tracks/c/exercises/isogram/test/vendor/unity.c
|
|
856
856
|
- tracks/c/exercises/isogram/test/vendor/unity.h
|
|
@@ -871,6 +871,7 @@ files:
|
|
|
871
871
|
- tracks/c/exercises/leap/test/vendor/unity.c
|
|
872
872
|
- tracks/c/exercises/leap/test/vendor/unity.h
|
|
873
873
|
- tracks/c/exercises/leap/test/vendor/unity_internals.h
|
|
874
|
+
- tracks/c/exercises/meetup/.meta/hints.md
|
|
874
875
|
- tracks/c/exercises/meetup/README.md
|
|
875
876
|
- tracks/c/exercises/meetup/makefile
|
|
876
877
|
- tracks/c/exercises/meetup/src/example.c
|
|
@@ -906,7 +907,7 @@ files:
|
|
|
906
907
|
- tracks/c/exercises/pangram/README.md
|
|
907
908
|
- tracks/c/exercises/pangram/makefile
|
|
908
909
|
- tracks/c/exercises/pangram/src/example.c
|
|
909
|
-
- tracks/c/exercises/pangram/src/
|
|
910
|
+
- tracks/c/exercises/pangram/src/pangram.h
|
|
910
911
|
- tracks/c/exercises/pangram/test/test_pangram.c
|
|
911
912
|
- tracks/c/exercises/pangram/test/vendor/unity.c
|
|
912
913
|
- tracks/c/exercises/pangram/test/vendor/unity.h
|
|
@@ -1008,6 +1009,7 @@ files:
|
|
|
1008
1009
|
- tracks/c/exercises/sieve/test/vendor/unity.c
|
|
1009
1010
|
- tracks/c/exercises/sieve/test/vendor/unity.h
|
|
1010
1011
|
- tracks/c/exercises/sieve/test/vendor/unity_internals.h
|
|
1012
|
+
- tracks/c/exercises/space-age/.meta/hints.md
|
|
1011
1013
|
- tracks/c/exercises/space-age/README.md
|
|
1012
1014
|
- tracks/c/exercises/space-age/makefile
|
|
1013
1015
|
- tracks/c/exercises/space-age/src/example.c
|
|
@@ -3887,6 +3889,10 @@ files:
|
|
|
3887
3889
|
- tracks/elisp/docs/SNIPPET.txt
|
|
3888
3890
|
- tracks/elisp/docs/TESTS.org
|
|
3889
3891
|
- tracks/elisp/docs/img/dual-pane.png
|
|
3892
|
+
- tracks/elisp/exercises/acronym/README.md
|
|
3893
|
+
- tracks/elisp/exercises/acronym/acronym-test.el
|
|
3894
|
+
- tracks/elisp/exercises/acronym/acronym.el
|
|
3895
|
+
- tracks/elisp/exercises/acronym/example.el
|
|
3890
3896
|
- tracks/elisp/exercises/allergies/README.md
|
|
3891
3897
|
- tracks/elisp/exercises/allergies/allergies-test.el
|
|
3892
3898
|
- tracks/elisp/exercises/allergies/allergies.el
|
|
@@ -5862,6 +5868,12 @@ files:
|
|
|
5862
5868
|
- tracks/go/exercises/allergies/allergies_test.go
|
|
5863
5869
|
- tracks/go/exercises/allergies/cases_test.go
|
|
5864
5870
|
- tracks/go/exercises/allergies/example.go
|
|
5871
|
+
- tracks/go/exercises/alphametics/.meta/gen.go
|
|
5872
|
+
- tracks/go/exercises/alphametics/.meta/hints.md
|
|
5873
|
+
- tracks/go/exercises/alphametics/README.md
|
|
5874
|
+
- tracks/go/exercises/alphametics/alphametics_test.go
|
|
5875
|
+
- tracks/go/exercises/alphametics/cases_test.go
|
|
5876
|
+
- tracks/go/exercises/alphametics/example.go
|
|
5865
5877
|
- tracks/go/exercises/anagram/.meta/gen.go
|
|
5866
5878
|
- tracks/go/exercises/anagram/README.md
|
|
5867
5879
|
- tracks/go/exercises/anagram/anagram_test.go
|
|
@@ -6230,6 +6242,9 @@ files:
|
|
|
6230
6242
|
- tracks/go/exercises/simple-cipher/cipher.go
|
|
6231
6243
|
- tracks/go/exercises/simple-cipher/example.go
|
|
6232
6244
|
- tracks/go/exercises/simple-cipher/simple_cipher_test.go
|
|
6245
|
+
- tracks/go/exercises/simple-linked-list/README.md
|
|
6246
|
+
- tracks/go/exercises/simple-linked-list/example.go
|
|
6247
|
+
- tracks/go/exercises/simple-linked-list/linked_list_test.go
|
|
6233
6248
|
- tracks/go/exercises/space-age/.meta/gen.go
|
|
6234
6249
|
- tracks/go/exercises/space-age/README.md
|
|
6235
6250
|
- tracks/go/exercises/space-age/cases_test.go
|
|
@@ -7261,7 +7276,6 @@ files:
|
|
|
7261
7276
|
- tracks/java/exercises/alphametics/.meta/src/version
|
|
7262
7277
|
- tracks/java/exercises/alphametics/README.md
|
|
7263
7278
|
- tracks/java/exercises/alphametics/build.gradle
|
|
7264
|
-
- tracks/java/exercises/alphametics/src/main/java/.keep
|
|
7265
7279
|
- tracks/java/exercises/alphametics/src/main/java/UnsolvablePuzzleException.java
|
|
7266
7280
|
- tracks/java/exercises/alphametics/src/test/java/AlphameticsTest.java
|
|
7267
7281
|
- tracks/java/exercises/anagram/.meta/src/reference/java/Anagram.java
|
|
@@ -7468,6 +7482,7 @@ files:
|
|
|
7468
7482
|
- tracks/java/exercises/isogram/src/test/java/IsogramCheckerTest.java
|
|
7469
7483
|
- tracks/java/exercises/kindergarten-garden/.meta/src/reference/java/KindergartenGarden.java
|
|
7470
7484
|
- tracks/java/exercises/kindergarten-garden/.meta/src/reference/java/Plant.java
|
|
7485
|
+
- tracks/java/exercises/kindergarten-garden/.meta/version
|
|
7471
7486
|
- tracks/java/exercises/kindergarten-garden/README.md
|
|
7472
7487
|
- tracks/java/exercises/kindergarten-garden/build.gradle
|
|
7473
7488
|
- tracks/java/exercises/kindergarten-garden/src/main/java/KindergartenGarden.java
|
|
@@ -7508,6 +7523,7 @@ files:
|
|
|
7508
7523
|
- tracks/java/exercises/matrix/src/test/java/MatrixTest.java
|
|
7509
7524
|
- tracks/java/exercises/meetup/.meta/src/reference/java/Meetup.java
|
|
7510
7525
|
- tracks/java/exercises/meetup/.meta/src/reference/java/MeetupSchedule.java
|
|
7526
|
+
- tracks/java/exercises/meetup/.meta/version
|
|
7511
7527
|
- tracks/java/exercises/meetup/README.md
|
|
7512
7528
|
- tracks/java/exercises/meetup/build.gradle
|
|
7513
7529
|
- tracks/java/exercises/meetup/src/main/java/MeetupSchedule.java
|
|
@@ -10299,6 +10315,7 @@ files:
|
|
|
10299
10315
|
- tracks/perl6/exercises/robot-name/example.yaml
|
|
10300
10316
|
- tracks/perl6/exercises/robot-name/robot-name.t
|
|
10301
10317
|
- tracks/perl6/exercises/roman-numerals/Example.pm6
|
|
10318
|
+
- tracks/perl6/exercises/roman-numerals/README.md
|
|
10302
10319
|
- tracks/perl6/exercises/roman-numerals/RomanNumerals.pm6
|
|
10303
10320
|
- tracks/perl6/exercises/roman-numerals/example.yaml
|
|
10304
10321
|
- tracks/perl6/exercises/roman-numerals/roman-numerals.t
|
|
File without changes
|