trackler 2.2.1.127 → 2.2.1.128

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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/lib/trackler/version.rb +1 -1
  3. data/tracks/c/docs/RESOURCES.md +0 -1
  4. data/tracks/delphi/exercises/isbn-verifier/uTestISBNVerifier.pas +2 -2
  5. data/tracks/ecmascript/config.json +2 -2
  6. data/tracks/elm/config/maintainers.json +11 -11
  7. data/tracks/elm/config.json +170 -245
  8. data/tracks/fsharp/exercises/pov/PovTest.fs +1 -1
  9. data/tracks/java/exercises/queen-attack/.meta/src/reference/java/Queen.java +38 -0
  10. data/tracks/java/exercises/queen-attack/.meta/src/reference/java/QueenAttackCalculator.java +11 -12
  11. data/tracks/java/exercises/queen-attack/.meta/version +1 -1
  12. data/tracks/java/exercises/queen-attack/src/test/java/QueenAttackCalculatorTest.java +50 -44
  13. data/tracks/python/config.json +26 -0
  14. data/tracks/python/exercises/bank-account/README.md +53 -0
  15. data/tracks/python/exercises/bank-account/bank_account.py +18 -0
  16. data/tracks/python/exercises/bank-account/bank_account_test.py +120 -0
  17. data/tracks/python/exercises/bank-account/example.py +35 -0
  18. data/tracks/python/exercises/go-counting/example.py +6 -6
  19. data/tracks/python/exercises/go-counting/go_counting.py +3 -2
  20. data/tracks/python/exercises/go-counting/go_counting_test.py +58 -51
  21. data/tracks/python/exercises/house/example.py +7 -13
  22. data/tracks/python/exercises/house/house_test.py +79 -204
  23. data/tracks/python/exercises/meetup/example.py +10 -1
  24. data/tracks/python/exercises/meetup/meetup_test.py +1 -6
  25. data/tracks/python/exercises/pascals-triangle/example.py +12 -14
  26. data/tracks/python/exercises/pascals-triangle/pascals_triangle.py +1 -9
  27. data/tracks/python/exercises/pascals-triangle/pascals_triangle_test.py +43 -29
  28. data/tracks/python/exercises/sgf-parsing/README.md +110 -0
  29. data/tracks/python/exercises/sgf-parsing/example.py +100 -0
  30. data/tracks/python/exercises/sgf-parsing/sgf_parsing.py +26 -0
  31. data/tracks/python/exercises/sgf-parsing/sgf_parsing_test.py +94 -0
  32. data/tracks/typescript/config.json +1 -1
  33. data/tracks/typescript/exercises/pangram/pangram.example.ts +2 -2
  34. data/tracks/typescript/exercises/pangram/pangram.test.ts +0 -2
  35. data/tracks/typescript/exercises/pangram/pangram.ts +0 -11
  36. metadata +11 -3
  37. data/tracks/java/exercises/queen-attack/.meta/src/reference/java/BoardCoordinate.java +0 -39
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c49ff0f4fc0fdb3d965cd232637f435ca35ab37
4
- data.tar.gz: 377d99ac24f28b2eccaf38d846a7fccee0c02ff4
3
+ metadata.gz: 95c12d366b56345b9290db24099586fded8bc53b
4
+ data.tar.gz: eb4abbb1e73967a3c856380828d56a5c44bdc015
5
5
  SHA512:
6
- metadata.gz: 025522777be27dc58735865b505c19d5db34479d5da0ce0c6a2e46a7ce7bbe1456d7566ee584dd70da28b9d0ac420f0be67de4a0e9c88b0876f67030cec60352
7
- data.tar.gz: f635a024dab851dfe600a43afbb448df96e964e7ab92073f0af0a9288fb77bb0963891a8a49e5a1b2fb296146e4f106a7ab4e04457f5ca5634dd69f7aff9d953
6
+ metadata.gz: 61b8a49b00c50f38498d9df569f49947aa0e3b05e868f97d076026bd90e0130463e1b02da0ffffa04a058899a8148384b06407601905cb8f9d9e179b3255208d
7
+ data.tar.gz: 2b76fb81be78ccac2532c7dc4e989ebea55d7f4ec807538e610011aa3454badbc199cfb0b2e5f2d7888d86c43c8bbcf8d701f1774d5466945cd341818200b406
@@ -1,3 +1,3 @@
1
1
  module Trackler
2
- VERSION = "2.2.1.127"
2
+ VERSION = "2.2.1.128"
3
3
  end
@@ -1,3 +1,2 @@
1
1
  - [C++ Reference](http://en.cppreference.com/w/): An online reference for C and C++ programming languages. You have a doubt what a method does? cppreference.com has you covered.
2
- - [The Definitive C Book Guide and List](http://stackoverflow.com/questions/562303/the-definitive-c-book-guide-and-list): The legendary StackOverflow's question about C books.
3
2
  - [`C` tag on StackOverflow](http://stackoverflow.com/questions/tagged/c)
@@ -5,7 +5,7 @@ uses
5
5
  DUnitX.TestFramework;
6
6
 
7
7
  const
8
- CanonicalVersion = '2.2.0';
8
+ CanonicalVersion = '2.3.0';
9
9
 
10
10
  type
11
11
  [TestFixture]
@@ -90,7 +90,7 @@ end;
90
90
 
91
91
  procedure ISBNVerifierTest.invalid_character_in_isbn;
92
92
  begin
93
- Assert.IsFalse(TIsbn.isValid('3-598-2K507-0'))
93
+ Assert.IsFalse(TIsbn.isValid('3-598-P1581-X'))
94
94
  end;
95
95
 
96
96
  procedure ISBNVerifierTest.invalid_isbn_check_digit;
@@ -596,7 +596,7 @@
596
596
  "uuid": "4dc30879-a589-4dd3-b7b6-22261f9d1520",
597
597
  "slug": "crypto-square",
598
598
  "core": false,
599
- "unlocked_by": "atbash-cipher",
599
+ "unlocked_by": "simple-cipher",
600
600
  "difficulty": 9,
601
601
  "topics": [
602
602
  "Control-flow (conditionals)",
@@ -825,7 +825,7 @@
825
825
  "uuid": "6c4b4e25-c115-4789-9058-d28ab6ca0d26",
826
826
  "slug": "binary-search-tree",
827
827
  "core": false,
828
- "unlocked_by": "binary-search",
828
+ "unlocked_by": "linked-list",
829
829
  "difficulty": 6,
830
830
  "topics": [
831
831
  "Control-flow (conditionals)",
@@ -1,25 +1,25 @@
1
1
  {
2
+ "docs_url": "https://github.com/exercism/docs/blob/master/maintaining-a-track/maintainer-configuration.md",
2
3
  "maintainers": [
3
4
  {
4
- "github_username": "tgecho",
5
- "show_on_website": false,
6
5
  "alumnus": false,
7
- "name": null,
6
+ "avatar_url": null,
8
7
  "bio": null,
8
+ "github_username": "tgecho",
9
9
  "link_text": null,
10
10
  "link_url": null,
11
- "avatar_url": null
11
+ "name": null,
12
+ "show_on_website": false
12
13
  },
13
14
  {
14
- "github_username": "bewatts",
15
- "show_on_website": false,
16
15
  "alumnus": false,
17
- "name": null,
16
+ "avatar_url": null,
18
17
  "bio": null,
18
+ "github_username": "bewatts",
19
19
  "link_text": null,
20
20
  "link_url": null,
21
- "avatar_url": null
21
+ "name": null,
22
+ "show_on_website": false
22
23
  }
23
- ],
24
- "docs_url": "https://github.com/exercism/docs/blob/master/maintaining-a-track/maintainer-configuration.md"
25
- }
24
+ ]
25
+ }