trackler 2.0.8.16 → 2.0.8.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/common/exercises/alphametics/canonical-data.json +100 -44
  3. data/common/exercises/anagram/canonical-data.json +3 -3
  4. data/common/exercises/beer-song/canonical-data.json +75 -47
  5. data/common/exercises/binary-search/canonical-data.json +86 -74
  6. data/common/exercises/bowling/canonical-data.json +1 -1
  7. data/common/exercises/bracket-push/canonical-data.json +15 -0
  8. data/common/exercises/circular-buffer/canonical-data.json +16 -1
  9. data/common/exercises/connect/canonical-data.json +19 -7
  10. data/common/exercises/custom-set/canonical-data.json +287 -246
  11. data/common/exercises/dominoes/canonical-data.json +125 -111
  12. data/common/exercises/flatten-array/canonical-data.json +35 -28
  13. data/common/exercises/food-chain/canonical-data.json +196 -182
  14. data/common/exercises/gigasecond/canonical-data.json +51 -41
  15. data/common/exercises/isogram/canonical-data.json +59 -38
  16. data/common/exercises/pangram/canonical-data.json +69 -47
  17. data/common/exercises/perfect-numbers/canonical-data.json +3 -3
  18. data/common/exercises/phone-number/canonical-data.json +74 -55
  19. data/common/exercises/sum-of-multiples/canonical-data.json +88 -62
  20. data/lib/trackler/version.rb +1 -1
  21. data/tracks/elixir/docs/INSTALLATION.md +2 -0
  22. data/tracks/elixir/docs/LEARNING.md +2 -0
  23. data/tracks/elixir/docs/RESOURCES.md +8 -0
  24. data/tracks/groovy/docs/ABOUT.md +1 -1
  25. data/tracks/groovy/docs/LEARNING.md +5 -4
  26. data/tracks/groovy/docs/RESOURCES.md +8 -1
  27. data/tracks/rust/exercises/hello-world/GETTING_STARTED.md +29 -97
  28. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88caa91880583c69357692f1686df34e93146459
4
- data.tar.gz: 9786bc1164d764970f93a67062c86be22524b479
3
+ metadata.gz: 6623d9b34910648ea90043538910b8630b706a7c
4
+ data.tar.gz: 43ad46ef86589fe924f1db60f6d6378a64fb32f8
5
5
  SHA512:
6
- metadata.gz: 11c4be86a064e49932ee781929f654480e36c50d289a6fcabfb6b92edd64ab1e4ed374b31c4fa76e4b28e1826efa937563885f193c34af9b6e77c512d3af0429
7
- data.tar.gz: 56bd0e55882ffb03f724727c932c7e31471cb1b6012e6f2f29e94e08d10f318dd3198b9b8f0e36a4ae50a4005e3b2610b64cb72b3f34b73c932e9717b56de1df
6
+ metadata.gz: 29f8ed887aa6e6e1198c4b09b392d3a55a653173c8946d2304b2f04c19a5b014a6987a0c10ed1169bfc7ef85d0e49ed396493dd1149099285022d1ec7df28c26
7
+ data.tar.gz: cceb09834ad9067c09257dc26b53a1b00fb164bdaf790876c0dffc4dccea9d0cf56accd62a5ee61f4327eda783b00dba6d6e524217b4fac3a92d3222fb0869b1
@@ -1,47 +1,103 @@
1
1
  {
2
- "solve": {
3
- "description": "Solve the alphametics puzzle",
4
- "cases": [
5
- {
6
- "description": "puzzle with three letters",
7
- "puzzle": "I + BB == ILL",
8
- "expected": { "I": 1, "B": 9, "L": 0 }
9
- },
10
- {
11
- "description": "solution must have unique value for each letter",
12
- "puzzle": "A == B",
13
- "expected": null
14
- },
15
- {
16
- "description": "leading zero solution is invalid",
17
- "puzzle": "ACA + DD == BD",
18
- "expected": null
19
- },
20
- {
21
- "description": "puzzle with four letters",
22
- "puzzle": "AS + A == MOM",
23
- "expected": { "A": 9, "S": 2, "M": 1, "O": 0 }
24
- },
25
- {
26
- "description": "puzzle with six letters",
27
- "puzzle": "NO + NO + TOO == LATE",
28
- "expected": { "N": 7, "O": 4, "T": 9, "L": 1, "A": 0, "E": 2}
29
- },
30
- {
31
- "description": "puzzle with seven letters",
32
- "puzzle": "HE + SEES + THE == LIGHT",
33
- "expected": { "E": 4, "G": 2, "H": 5, "I": 0, "L": 1, "S": 9, "T": 7 }
34
- },
35
- {
36
- "description": "puzzle with eight letters",
37
- "puzzle": "SEND + MORE == MONEY",
38
- "expected": { "S": 9, "E": 5, "N": 6, "D": 7, "M": 1, "O": 0, "R": 8, "Y": 2 }
39
- },
40
- {
41
- "description": "puzzle with ten letters",
42
- "puzzle": "AND + A + STRONG + OFFENSE + AS + A + GOOD == DEFENSE",
43
- "expected": { "A": 5, "D": 3, "E": 4, "F": 7, "G": 8, "N": 0, "O": 2, "R": 1, "S": 6, "T": 9 }
44
- }
45
- ]
2
+ "exercise": "alphametics",
3
+ "version": "1.0.0",
4
+ "cases": [
5
+ {
6
+ "description": "Solve the alphametics puzzle",
7
+ "cases": [
8
+ {
9
+ "description": "puzzle with three letters",
10
+ "property": "solve",
11
+ "puzzle": "I + BB == ILL",
12
+ "expected": {
13
+ "I": 1,
14
+ "B": 9,
15
+ "L": 0
16
+ }
17
+ },
18
+ {
19
+ "description": "solution must have unique value for each letter",
20
+ "property": "solve",
21
+ "puzzle": "A == B",
22
+ "expected": null
23
+ },
24
+ {
25
+ "description": "leading zero solution is invalid",
26
+ "property": "solve",
27
+ "puzzle": "ACA + DD == BD",
28
+ "expected": null
29
+ },
30
+ {
31
+ "description": "puzzle with four letters",
32
+ "property": "solve",
33
+ "puzzle": "AS + A == MOM",
34
+ "expected": {
35
+ "A": 9,
36
+ "S": 2,
37
+ "M": 1,
38
+ "O": 0
39
+ }
40
+ },
41
+ {
42
+ "description": "puzzle with six letters",
43
+ "property": "solve",
44
+ "puzzle": "NO + NO + TOO == LATE",
45
+ "expected": {
46
+ "N": 7,
47
+ "O": 4,
48
+ "T": 9,
49
+ "L": 1,
50
+ "A": 0,
51
+ "E": 2
52
+ }
53
+ },
54
+ {
55
+ "description": "puzzle with seven letters",
56
+ "property": "solve",
57
+ "puzzle": "HE + SEES + THE == LIGHT",
58
+ "expected": {
59
+ "E": 4,
60
+ "G": 2,
61
+ "H": 5,
62
+ "I": 0,
63
+ "L": 1,
64
+ "S": 9,
65
+ "T": 7
66
+ }
67
+ },
68
+ {
69
+ "description": "puzzle with eight letters",
70
+ "property": "solve",
71
+ "puzzle": "SEND + MORE == MONEY",
72
+ "expected": {
73
+ "S": 9,
74
+ "E": 5,
75
+ "N": 6,
76
+ "D": 7,
77
+ "M": 1,
78
+ "O": 0,
79
+ "R": 8,
80
+ "Y": 2
81
+ }
82
+ },
83
+ {
84
+ "description": "puzzle with ten letters",
85
+ "property": "solve",
86
+ "puzzle": "AND + A + STRONG + OFFENSE + AS + A + GOOD == DEFENSE",
87
+ "expected": {
88
+ "A": 5,
89
+ "D": 3,
90
+ "E": 4,
91
+ "F": 7,
92
+ "G": 8,
93
+ "N": 0,
94
+ "O": 2,
95
+ "R": 1,
96
+ "S": 6,
97
+ "T": 9
98
+ }
99
+ }
100
+ ]
46
101
  }
102
+ ]
47
103
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "exercise": "anagram",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "comments": [
5
5
  "The string argument cases possible matches are passed in as",
6
6
  "individual arguments rather than arrays. Languages can include",
@@ -30,7 +30,7 @@
30
30
  "expected": []
31
31
  },
32
32
  {
33
- "description": "detects multiple anagrams",
33
+ "description": "detects two anagrams",
34
34
  "property": "anagrams",
35
35
  "subject": "master",
36
36
  "candidates": ["stream", "pigeon", "maters"],
@@ -51,7 +51,7 @@
51
51
  "expected": ["inlets"]
52
52
  },
53
53
  {
54
- "description": "detects multiple anagrams",
54
+ "description": "detects three anagrams",
55
55
  "property": "anagrams",
56
56
  "subject": "allergy",
57
57
  "candidates": [ "gallery",
@@ -1,49 +1,77 @@
1
1
  {
2
- "verse": {
3
- "description": "return 1 verse",
4
- "cases": [
5
- {
6
- "description": "first verse",
7
- "number": 99,
8
- "expected": "99 bottles of beer on the wall, 99 bottles of beer.\nTake one down and pass it around, 98 bottles of beer on the wall.\n"
9
- },
10
- {
11
- "description": "middle verse",
12
- "number": 44,
13
- "expected": "44 bottles of beer on the wall, 44 bottles of beer.\nTake one down and pass it around, 43 bottles of beer on the wall.\n"
14
- },
15
- {
16
- "description": "third to last verse",
17
- "number": 2,
18
- "expected": "2 bottles of beer on the wall, 2 bottles of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.\n"
19
- },
20
- {
21
- "description": "penultimate verse",
22
- "number": 1,
23
- "expected": "1 bottle of beer on the wall, 1 bottle of beer.\nTake it down and pass it around, no more bottles of beer on the wall.\n"
24
- },
25
- {
26
- "description": "last verse",
27
- "number": 0,
28
- "expected": "No more bottles of beer on the wall, no more bottles of beer.\nGo to the store and buy some more, 99 bottles of beer on the wall.\n"
29
- }
30
- ]
31
- },
32
- "lyrics": {
33
- "description": "return multiple verses",
34
- "cases": [
35
- {
36
- "description": "last 4 verses",
37
- "beginning": 3,
38
- "end": 0,
39
- "expected": "3 bottles of beer on the wall, 3 bottles of beer.\nTake one down and pass it around, 2 bottles of beer on the wall.\n\n2 bottles of beer on the wall, 2 bottles of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.\n\n1 bottle of beer on the wall, 1 bottle of beer.\nTake it down and pass it around, no more bottles of beer on the wall.\n\nNo more bottles of beer on the wall, no more bottles of beer.\nGo to the store and buy some more, 99 bottles of beer on the wall.\n"
40
- },
41
- {
42
- "description": "all verses",
43
- "beginning": 99,
44
- "end": 0,
45
- "expected": "99 bottles of beer on the wall, 99 bottles of beer.\nTake one down and pass it around, 98 bottles of beer on the wall.\n\n98 bottles of beer on the wall, 98 bottles of beer.\nTake one down and pass it around, 97 bottles of beer on the wall.\n\n97 bottles of beer on the wall, 97 bottles of beer.\nTake one down and pass it around, 96 bottles of beer on the wall.\n\n96 bottles of beer on the wall, 96 bottles of beer.\nTake one down and pass it around, 95 bottles of beer on the wall.\n\n95 bottles of beer on the wall, 95 bottles of beer.\nTake one down and pass it around, 94 bottles of beer on the wall.\n\n94 bottles of beer on the wall, 94 bottles of beer.\nTake one down and pass it around, 93 bottles of beer on the wall.\n\n93 bottles of beer on the wall, 93 bottles of beer.\nTake one down and pass it around, 92 bottles of beer on the wall.\n\n92 bottles of beer on the wall, 92 bottles of beer.\nTake one down and pass it around, 91 bottles of beer on the wall.\n\n91 bottles of beer on the wall, 91 bottles of beer.\nTake one down and pass it around, 90 bottles of beer on the wall.\n\n90 bottles of beer on the wall, 90 bottles of beer.\nTake one down and pass it around, 89 bottles of beer on the wall.\n\n89 bottles of beer on the wall, 89 bottles of beer.\nTake one down and pass it around, 88 bottles of beer on the wall.\n\n88 bottles of beer on the wall, 88 bottles of beer.\nTake one down and pass it around, 87 bottles of beer on the wall.\n\n87 bottles of beer on the wall, 87 bottles of beer.\nTake one down and pass it around, 86 bottles of beer on the wall.\n\n86 bottles of beer on the wall, 86 bottles of beer.\nTake one down and pass it around, 85 bottles of beer on the wall.\n\n85 bottles of beer on the wall, 85 bottles of beer.\nTake one down and pass it around, 84 bottles of beer on the wall.\n\n84 bottles of beer on the wall, 84 bottles of beer.\nTake one down and pass it around, 83 bottles of beer on the wall.\n\n83 bottles of beer on the wall, 83 bottles of beer.\nTake one down and pass it around, 82 bottles of beer on the wall.\n\n82 bottles of beer on the wall, 82 bottles of beer.\nTake one down and pass it around, 81 bottles of beer on the wall.\n\n81 bottles of beer on the wall, 81 bottles of beer.\nTake one down and pass it around, 80 bottles of beer on the wall.\n\n80 bottles of beer on the wall, 80 bottles of beer.\nTake one down and pass it around, 79 bottles of beer on the wall.\n\n79 bottles of beer on the wall, 79 bottles of beer.\nTake one down and pass it around, 78 bottles of beer on the wall.\n\n78 bottles of beer on the wall, 78 bottles of beer.\nTake one down and pass it around, 77 bottles of beer on the wall.\n\n77 bottles of beer on the wall, 77 bottles of beer.\nTake one down and pass it around, 76 bottles of beer on the wall.\n\n76 bottles of beer on the wall, 76 bottles of beer.\nTake one down and pass it around, 75 bottles of beer on the wall.\n\n75 bottles of beer on the wall, 75 bottles of beer.\nTake one down and pass it around, 74 bottles of beer on the wall.\n\n74 bottles of beer on the wall, 74 bottles of beer.\nTake one down and pass it around, 73 bottles of beer on the wall.\n\n73 bottles of beer on the wall, 73 bottles of beer.\nTake one down and pass it around, 72 bottles of beer on the wall.\n\n72 bottles of beer on the wall, 72 bottles of beer.\nTake one down and pass it around, 71 bottles of beer on the wall.\n\n71 bottles of beer on the wall, 71 bottles of beer.\nTake one down and pass it around, 70 bottles of beer on the wall.\n\n70 bottles of beer on the wall, 70 bottles of beer.\nTake one down and pass it around, 69 bottles of beer on the wall.\n\n69 bottles of beer on the wall, 69 bottles of beer.\nTake one down and pass it around, 68 bottles of beer on the wall.\n\n68 bottles of beer on the wall, 68 bottles of beer.\nTake one down and pass it around, 67 bottles of beer on the wall.\n\n67 bottles of beer on the wall, 67 bottles of beer.\nTake one down and pass it around, 66 bottles of beer on the wall.\n\n66 bottles of beer on the wall, 66 bottles of beer.\nTake one down and pass it around, 65 bottles of beer on the wall.\n\n65 bottles of beer on the wall, 65 bottles of beer.\nTake one down and pass it around, 64 bottles of beer on the wall.\n\n64 bottles of beer on the wall, 64 bottles of beer.\nTake one down and pass it around, 63 bottles of beer on the wall.\n\n63 bottles of beer on the wall, 63 bottles of beer.\nTake one down and pass it around, 62 bottles of beer on the wall.\n\n62 bottles of beer on the wall, 62 bottles of beer.\nTake one down and pass it around, 61 bottles of beer on the wall.\n\n61 bottles of beer on the wall, 61 bottles of beer.\nTake one down and pass it around, 60 bottles of beer on the wall.\n\n60 bottles of beer on the wall, 60 bottles of beer.\nTake one down and pass it around, 59 bottles of beer on the wall.\n\n59 bottles of beer on the wall, 59 bottles of beer.\nTake one down and pass it around, 58 bottles of beer on the wall.\n\n58 bottles of beer on the wall, 58 bottles of beer.\nTake one down and pass it around, 57 bottles of beer on the wall.\n\n57 bottles of beer on the wall, 57 bottles of beer.\nTake one down and pass it around, 56 bottles of beer on the wall.\n\n56 bottles of beer on the wall, 56 bottles of beer.\nTake one down and pass it around, 55 bottles of beer on the wall.\n\n55 bottles of beer on the wall, 55 bottles of beer.\nTake one down and pass it around, 54 bottles of beer on the wall.\n\n54 bottles of beer on the wall, 54 bottles of beer.\nTake one down and pass it around, 53 bottles of beer on the wall.\n\n53 bottles of beer on the wall, 53 bottles of beer.\nTake one down and pass it around, 52 bottles of beer on the wall.\n\n52 bottles of beer on the wall, 52 bottles of beer.\nTake one down and pass it around, 51 bottles of beer on the wall.\n\n51 bottles of beer on the wall, 51 bottles of beer.\nTake one down and pass it around, 50 bottles of beer on the wall.\n\n50 bottles of beer on the wall, 50 bottles of beer.\nTake one down and pass it around, 49 bottles of beer on the wall.\n\n49 bottles of beer on the wall, 49 bottles of beer.\nTake one down and pass it around, 48 bottles of beer on the wall.\n\n48 bottles of beer on the wall, 48 bottles of beer.\nTake one down and pass it around, 47 bottles of beer on the wall.\n\n47 bottles of beer on the wall, 47 bottles of beer.\nTake one down and pass it around, 46 bottles of beer on the wall.\n\n46 bottles of beer on the wall, 46 bottles of beer.\nTake one down and pass it around, 45 bottles of beer on the wall.\n\n45 bottles of beer on the wall, 45 bottles of beer.\nTake one down and pass it around, 44 bottles of beer on the wall.\n\n44 bottles of beer on the wall, 44 bottles of beer.\nTake one down and pass it around, 43 bottles of beer on the wall.\n\n43 bottles of beer on the wall, 43 bottles of beer.\nTake one down and pass it around, 42 bottles of beer on the wall.\n\n42 bottles of beer on the wall, 42 bottles of beer.\nTake one down and pass it around, 41 bottles of beer on the wall.\n\n41 bottles of beer on the wall, 41 bottles of beer.\nTake one down and pass it around, 40 bottles of beer on the wall.\n\n40 bottles of beer on the wall, 40 bottles of beer.\nTake one down and pass it around, 39 bottles of beer on the wall.\n\n39 bottles of beer on the wall, 39 bottles of beer.\nTake one down and pass it around, 38 bottles of beer on the wall.\n\n38 bottles of beer on the wall, 38 bottles of beer.\nTake one down and pass it around, 37 bottles of beer on the wall.\n\n37 bottles of beer on the wall, 37 bottles of beer.\nTake one down and pass it around, 36 bottles of beer on the wall.\n\n36 bottles of beer on the wall, 36 bottles of beer.\nTake one down and pass it around, 35 bottles of beer on the wall.\n\n35 bottles of beer on the wall, 35 bottles of beer.\nTake one down and pass it around, 34 bottles of beer on the wall.\n\n34 bottles of beer on the wall, 34 bottles of beer.\nTake one down and pass it around, 33 bottles of beer on the wall.\n\n33 bottles of beer on the wall, 33 bottles of beer.\nTake one down and pass it around, 32 bottles of beer on the wall.\n\n32 bottles of beer on the wall, 32 bottles of beer.\nTake one down and pass it around, 31 bottles of beer on the wall.\n\n31 bottles of beer on the wall, 31 bottles of beer.\nTake one down and pass it around, 30 bottles of beer on the wall.\n\n30 bottles of beer on the wall, 30 bottles of beer.\nTake one down and pass it around, 29 bottles of beer on the wall.\n\n29 bottles of beer on the wall, 29 bottles of beer.\nTake one down and pass it around, 28 bottles of beer on the wall.\n\n28 bottles of beer on the wall, 28 bottles of beer.\nTake one down and pass it around, 27 bottles of beer on the wall.\n\n27 bottles of beer on the wall, 27 bottles of beer.\nTake one down and pass it around, 26 bottles of beer on the wall.\n\n26 bottles of beer on the wall, 26 bottles of beer.\nTake one down and pass it around, 25 bottles of beer on the wall.\n\n25 bottles of beer on the wall, 25 bottles of beer.\nTake one down and pass it around, 24 bottles of beer on the wall.\n\n24 bottles of beer on the wall, 24 bottles of beer.\nTake one down and pass it around, 23 bottles of beer on the wall.\n\n23 bottles of beer on the wall, 23 bottles of beer.\nTake one down and pass it around, 22 bottles of beer on the wall.\n\n22 bottles of beer on the wall, 22 bottles of beer.\nTake one down and pass it around, 21 bottles of beer on the wall.\n\n21 bottles of beer on the wall, 21 bottles of beer.\nTake one down and pass it around, 20 bottles of beer on the wall.\n\n20 bottles of beer on the wall, 20 bottles of beer.\nTake one down and pass it around, 19 bottles of beer on the wall.\n\n19 bottles of beer on the wall, 19 bottles of beer.\nTake one down and pass it around, 18 bottles of beer on the wall.\n\n18 bottles of beer on the wall, 18 bottles of beer.\nTake one down and pass it around, 17 bottles of beer on the wall.\n\n17 bottles of beer on the wall, 17 bottles of beer.\nTake one down and pass it around, 16 bottles of beer on the wall.\n\n16 bottles of beer on the wall, 16 bottles of beer.\nTake one down and pass it around, 15 bottles of beer on the wall.\n\n15 bottles of beer on the wall, 15 bottles of beer.\nTake one down and pass it around, 14 bottles of beer on the wall.\n\n14 bottles of beer on the wall, 14 bottles of beer.\nTake one down and pass it around, 13 bottles of beer on the wall.\n\n13 bottles of beer on the wall, 13 bottles of beer.\nTake one down and pass it around, 12 bottles of beer on the wall.\n\n12 bottles of beer on the wall, 12 bottles of beer.\nTake one down and pass it around, 11 bottles of beer on the wall.\n\n11 bottles of beer on the wall, 11 bottles of beer.\nTake one down and pass it around, 10 bottles of beer on the wall.\n\n10 bottles of beer on the wall, 10 bottles of beer.\nTake one down and pass it around, 9 bottles of beer on the wall.\n\n9 bottles of beer on the wall, 9 bottles of beer.\nTake one down and pass it around, 8 bottles of beer on the wall.\n\n8 bottles of beer on the wall, 8 bottles of beer.\nTake one down and pass it around, 7 bottles of beer on the wall.\n\n7 bottles of beer on the wall, 7 bottles of beer.\nTake one down and pass it around, 6 bottles of beer on the wall.\n\n6 bottles of beer on the wall, 6 bottles of beer.\nTake one down and pass it around, 5 bottles of beer on the wall.\n\n5 bottles of beer on the wall, 5 bottles of beer.\nTake one down and pass it around, 4 bottles of beer on the wall.\n\n4 bottles of beer on the wall, 4 bottles of beer.\nTake one down and pass it around, 3 bottles of beer on the wall.\n\n3 bottles of beer on the wall, 3 bottles of beer.\nTake one down and pass it around, 2 bottles of beer on the wall.\n\n2 bottles of beer on the wall, 2 bottles of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.\n\n1 bottle of beer on the wall, 1 bottle of beer.\nTake it down and pass it around, no more bottles of beer on the wall.\n\nNo more bottles of beer on the wall, no more bottles of beer.\nGo to the store and buy some more, 99 bottles of beer on the wall.\n"
46
- }
47
- ]
48
- }
2
+ "exercise": "beer-song",
3
+ "version": "1.0.0",
4
+ "cases": [
5
+ {
6
+ "description": "verse",
7
+ "cases": [
8
+ {
9
+ "description": "single verse",
10
+ "cases": [
11
+ {
12
+ "description": "first generic verse",
13
+ "property": "verse",
14
+ "number": 99,
15
+ "expected": "99 bottles of beer on the wall, 99 bottles of beer.\nTake one down and pass it around, 98 bottles of beer on the wall.\n"
16
+ },
17
+ {
18
+ "description": "last generic verse",
19
+ "property": "verse",
20
+ "number": 3,
21
+ "expected": "3 bottles of beer on the wall, 3 bottles of beer.\nTake one down and pass it around, 2 bottles of beer on the wall.\n"
22
+ },
23
+ {
24
+ "description": "verse 2",
25
+ "property": "verse",
26
+ "number": 2,
27
+ "expected": "2 bottles of beer on the wall, 2 bottles of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.\n"
28
+ },
29
+ {
30
+ "description": "verse 1",
31
+ "property": "verse",
32
+ "number": 1,
33
+ "expected": "1 bottle of beer on the wall, 1 bottle of beer.\nTake it down and pass it around, no more bottles of beer on the wall.\n"
34
+ },
35
+ {
36
+ "description": "verse 0",
37
+ "property": "verse",
38
+ "number": 0,
39
+ "expected": "No more bottles of beer on the wall, no more bottles of beer.\nGo to the store and buy some more, 99 bottles of beer on the wall.\n"
40
+ }
41
+ ]
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "description": "lyrics",
47
+ "cases": [
48
+ {
49
+ "description": "multiple verses",
50
+ "cases": [
51
+ {
52
+ "description": "first two verses",
53
+ "property": "verses",
54
+ "beginning": 99,
55
+ "end": 98,
56
+ "expected": "99 bottles of beer on the wall, 99 bottles of beer.\nTake one down and pass it around, 98 bottles of beer on the wall.\n\n98 bottles of beer on the wall, 98 bottles of beer.\nTake one down and pass it around, 97 bottles of beer on the wall.\n"
57
+ },
58
+ {
59
+ "description": "last three verses",
60
+ "property": "verses",
61
+ "beginning": 2,
62
+ "end": 0,
63
+ "expected": "2 bottles of beer on the wall, 2 bottles of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.\n\n1 bottle of beer on the wall, 1 bottle of beer.\nTake it down and pass it around, no more bottles of beer on the wall.\n\nNo more bottles of beer on the wall, no more bottles of beer.\nGo to the store and buy some more, 99 bottles of beer on the wall.\n"
64
+ },
65
+ {
66
+ "description": "all verses",
67
+ "property": "verses",
68
+ "beginning": 99,
69
+ "end": 0,
70
+ "expected": "99 bottles of beer on the wall, 99 bottles of beer.\nTake one down and pass it around, 98 bottles of beer on the wall.\n\n98 bottles of beer on the wall, 98 bottles of beer.\nTake one down and pass it around, 97 bottles of beer on the wall.\n\n97 bottles of beer on the wall, 97 bottles of beer.\nTake one down and pass it around, 96 bottles of beer on the wall.\n\n96 bottles of beer on the wall, 96 bottles of beer.\nTake one down and pass it around, 95 bottles of beer on the wall.\n\n95 bottles of beer on the wall, 95 bottles of beer.\nTake one down and pass it around, 94 bottles of beer on the wall.\n\n94 bottles of beer on the wall, 94 bottles of beer.\nTake one down and pass it around, 93 bottles of beer on the wall.\n\n93 bottles of beer on the wall, 93 bottles of beer.\nTake one down and pass it around, 92 bottles of beer on the wall.\n\n92 bottles of beer on the wall, 92 bottles of beer.\nTake one down and pass it around, 91 bottles of beer on the wall.\n\n91 bottles of beer on the wall, 91 bottles of beer.\nTake one down and pass it around, 90 bottles of beer on the wall.\n\n90 bottles of beer on the wall, 90 bottles of beer.\nTake one down and pass it around, 89 bottles of beer on the wall.\n\n89 bottles of beer on the wall, 89 bottles of beer.\nTake one down and pass it around, 88 bottles of beer on the wall.\n\n88 bottles of beer on the wall, 88 bottles of beer.\nTake one down and pass it around, 87 bottles of beer on the wall.\n\n87 bottles of beer on the wall, 87 bottles of beer.\nTake one down and pass it around, 86 bottles of beer on the wall.\n\n86 bottles of beer on the wall, 86 bottles of beer.\nTake one down and pass it around, 85 bottles of beer on the wall.\n\n85 bottles of beer on the wall, 85 bottles of beer.\nTake one down and pass it around, 84 bottles of beer on the wall.\n\n84 bottles of beer on the wall, 84 bottles of beer.\nTake one down and pass it around, 83 bottles of beer on the wall.\n\n83 bottles of beer on the wall, 83 bottles of beer.\nTake one down and pass it around, 82 bottles of beer on the wall.\n\n82 bottles of beer on the wall, 82 bottles of beer.\nTake one down and pass it around, 81 bottles of beer on the wall.\n\n81 bottles of beer on the wall, 81 bottles of beer.\nTake one down and pass it around, 80 bottles of beer on the wall.\n\n80 bottles of beer on the wall, 80 bottles of beer.\nTake one down and pass it around, 79 bottles of beer on the wall.\n\n79 bottles of beer on the wall, 79 bottles of beer.\nTake one down and pass it around, 78 bottles of beer on the wall.\n\n78 bottles of beer on the wall, 78 bottles of beer.\nTake one down and pass it around, 77 bottles of beer on the wall.\n\n77 bottles of beer on the wall, 77 bottles of beer.\nTake one down and pass it around, 76 bottles of beer on the wall.\n\n76 bottles of beer on the wall, 76 bottles of beer.\nTake one down and pass it around, 75 bottles of beer on the wall.\n\n75 bottles of beer on the wall, 75 bottles of beer.\nTake one down and pass it around, 74 bottles of beer on the wall.\n\n74 bottles of beer on the wall, 74 bottles of beer.\nTake one down and pass it around, 73 bottles of beer on the wall.\n\n73 bottles of beer on the wall, 73 bottles of beer.\nTake one down and pass it around, 72 bottles of beer on the wall.\n\n72 bottles of beer on the wall, 72 bottles of beer.\nTake one down and pass it around, 71 bottles of beer on the wall.\n\n71 bottles of beer on the wall, 71 bottles of beer.\nTake one down and pass it around, 70 bottles of beer on the wall.\n\n70 bottles of beer on the wall, 70 bottles of beer.\nTake one down and pass it around, 69 bottles of beer on the wall.\n\n69 bottles of beer on the wall, 69 bottles of beer.\nTake one down and pass it around, 68 bottles of beer on the wall.\n\n68 bottles of beer on the wall, 68 bottles of beer.\nTake one down and pass it around, 67 bottles of beer on the wall.\n\n67 bottles of beer on the wall, 67 bottles of beer.\nTake one down and pass it around, 66 bottles of beer on the wall.\n\n66 bottles of beer on the wall, 66 bottles of beer.\nTake one down and pass it around, 65 bottles of beer on the wall.\n\n65 bottles of beer on the wall, 65 bottles of beer.\nTake one down and pass it around, 64 bottles of beer on the wall.\n\n64 bottles of beer on the wall, 64 bottles of beer.\nTake one down and pass it around, 63 bottles of beer on the wall.\n\n63 bottles of beer on the wall, 63 bottles of beer.\nTake one down and pass it around, 62 bottles of beer on the wall.\n\n62 bottles of beer on the wall, 62 bottles of beer.\nTake one down and pass it around, 61 bottles of beer on the wall.\n\n61 bottles of beer on the wall, 61 bottles of beer.\nTake one down and pass it around, 60 bottles of beer on the wall.\n\n60 bottles of beer on the wall, 60 bottles of beer.\nTake one down and pass it around, 59 bottles of beer on the wall.\n\n59 bottles of beer on the wall, 59 bottles of beer.\nTake one down and pass it around, 58 bottles of beer on the wall.\n\n58 bottles of beer on the wall, 58 bottles of beer.\nTake one down and pass it around, 57 bottles of beer on the wall.\n\n57 bottles of beer on the wall, 57 bottles of beer.\nTake one down and pass it around, 56 bottles of beer on the wall.\n\n56 bottles of beer on the wall, 56 bottles of beer.\nTake one down and pass it around, 55 bottles of beer on the wall.\n\n55 bottles of beer on the wall, 55 bottles of beer.\nTake one down and pass it around, 54 bottles of beer on the wall.\n\n54 bottles of beer on the wall, 54 bottles of beer.\nTake one down and pass it around, 53 bottles of beer on the wall.\n\n53 bottles of beer on the wall, 53 bottles of beer.\nTake one down and pass it around, 52 bottles of beer on the wall.\n\n52 bottles of beer on the wall, 52 bottles of beer.\nTake one down and pass it around, 51 bottles of beer on the wall.\n\n51 bottles of beer on the wall, 51 bottles of beer.\nTake one down and pass it around, 50 bottles of beer on the wall.\n\n50 bottles of beer on the wall, 50 bottles of beer.\nTake one down and pass it around, 49 bottles of beer on the wall.\n\n49 bottles of beer on the wall, 49 bottles of beer.\nTake one down and pass it around, 48 bottles of beer on the wall.\n\n48 bottles of beer on the wall, 48 bottles of beer.\nTake one down and pass it around, 47 bottles of beer on the wall.\n\n47 bottles of beer on the wall, 47 bottles of beer.\nTake one down and pass it around, 46 bottles of beer on the wall.\n\n46 bottles of beer on the wall, 46 bottles of beer.\nTake one down and pass it around, 45 bottles of beer on the wall.\n\n45 bottles of beer on the wall, 45 bottles of beer.\nTake one down and pass it around, 44 bottles of beer on the wall.\n\n44 bottles of beer on the wall, 44 bottles of beer.\nTake one down and pass it around, 43 bottles of beer on the wall.\n\n43 bottles of beer on the wall, 43 bottles of beer.\nTake one down and pass it around, 42 bottles of beer on the wall.\n\n42 bottles of beer on the wall, 42 bottles of beer.\nTake one down and pass it around, 41 bottles of beer on the wall.\n\n41 bottles of beer on the wall, 41 bottles of beer.\nTake one down and pass it around, 40 bottles of beer on the wall.\n\n40 bottles of beer on the wall, 40 bottles of beer.\nTake one down and pass it around, 39 bottles of beer on the wall.\n\n39 bottles of beer on the wall, 39 bottles of beer.\nTake one down and pass it around, 38 bottles of beer on the wall.\n\n38 bottles of beer on the wall, 38 bottles of beer.\nTake one down and pass it around, 37 bottles of beer on the wall.\n\n37 bottles of beer on the wall, 37 bottles of beer.\nTake one down and pass it around, 36 bottles of beer on the wall.\n\n36 bottles of beer on the wall, 36 bottles of beer.\nTake one down and pass it around, 35 bottles of beer on the wall.\n\n35 bottles of beer on the wall, 35 bottles of beer.\nTake one down and pass it around, 34 bottles of beer on the wall.\n\n34 bottles of beer on the wall, 34 bottles of beer.\nTake one down and pass it around, 33 bottles of beer on the wall.\n\n33 bottles of beer on the wall, 33 bottles of beer.\nTake one down and pass it around, 32 bottles of beer on the wall.\n\n32 bottles of beer on the wall, 32 bottles of beer.\nTake one down and pass it around, 31 bottles of beer on the wall.\n\n31 bottles of beer on the wall, 31 bottles of beer.\nTake one down and pass it around, 30 bottles of beer on the wall.\n\n30 bottles of beer on the wall, 30 bottles of beer.\nTake one down and pass it around, 29 bottles of beer on the wall.\n\n29 bottles of beer on the wall, 29 bottles of beer.\nTake one down and pass it around, 28 bottles of beer on the wall.\n\n28 bottles of beer on the wall, 28 bottles of beer.\nTake one down and pass it around, 27 bottles of beer on the wall.\n\n27 bottles of beer on the wall, 27 bottles of beer.\nTake one down and pass it around, 26 bottles of beer on the wall.\n\n26 bottles of beer on the wall, 26 bottles of beer.\nTake one down and pass it around, 25 bottles of beer on the wall.\n\n25 bottles of beer on the wall, 25 bottles of beer.\nTake one down and pass it around, 24 bottles of beer on the wall.\n\n24 bottles of beer on the wall, 24 bottles of beer.\nTake one down and pass it around, 23 bottles of beer on the wall.\n\n23 bottles of beer on the wall, 23 bottles of beer.\nTake one down and pass it around, 22 bottles of beer on the wall.\n\n22 bottles of beer on the wall, 22 bottles of beer.\nTake one down and pass it around, 21 bottles of beer on the wall.\n\n21 bottles of beer on the wall, 21 bottles of beer.\nTake one down and pass it around, 20 bottles of beer on the wall.\n\n20 bottles of beer on the wall, 20 bottles of beer.\nTake one down and pass it around, 19 bottles of beer on the wall.\n\n19 bottles of beer on the wall, 19 bottles of beer.\nTake one down and pass it around, 18 bottles of beer on the wall.\n\n18 bottles of beer on the wall, 18 bottles of beer.\nTake one down and pass it around, 17 bottles of beer on the wall.\n\n17 bottles of beer on the wall, 17 bottles of beer.\nTake one down and pass it around, 16 bottles of beer on the wall.\n\n16 bottles of beer on the wall, 16 bottles of beer.\nTake one down and pass it around, 15 bottles of beer on the wall.\n\n15 bottles of beer on the wall, 15 bottles of beer.\nTake one down and pass it around, 14 bottles of beer on the wall.\n\n14 bottles of beer on the wall, 14 bottles of beer.\nTake one down and pass it around, 13 bottles of beer on the wall.\n\n13 bottles of beer on the wall, 13 bottles of beer.\nTake one down and pass it around, 12 bottles of beer on the wall.\n\n12 bottles of beer on the wall, 12 bottles of beer.\nTake one down and pass it around, 11 bottles of beer on the wall.\n\n11 bottles of beer on the wall, 11 bottles of beer.\nTake one down and pass it around, 10 bottles of beer on the wall.\n\n10 bottles of beer on the wall, 10 bottles of beer.\nTake one down and pass it around, 9 bottles of beer on the wall.\n\n9 bottles of beer on the wall, 9 bottles of beer.\nTake one down and pass it around, 8 bottles of beer on the wall.\n\n8 bottles of beer on the wall, 8 bottles of beer.\nTake one down and pass it around, 7 bottles of beer on the wall.\n\n7 bottles of beer on the wall, 7 bottles of beer.\nTake one down and pass it around, 6 bottles of beer on the wall.\n\n6 bottles of beer on the wall, 6 bottles of beer.\nTake one down and pass it around, 5 bottles of beer on the wall.\n\n5 bottles of beer on the wall, 5 bottles of beer.\nTake one down and pass it around, 4 bottles of beer on the wall.\n\n4 bottles of beer on the wall, 4 bottles of beer.\nTake one down and pass it around, 3 bottles of beer on the wall.\n\n3 bottles of beer on the wall, 3 bottles of beer.\nTake one down and pass it around, 2 bottles of beer on the wall.\n\n2 bottles of beer on the wall, 2 bottles of beer.\nTake one down and pass it around, 1 bottle of beer on the wall.\n\n1 bottle of beer on the wall, 1 bottle of beer.\nTake it down and pass it around, no more bottles of beer on the wall.\n\nNo more bottles of beer on the wall, no more bottles of beer.\nGo to the store and buy some more, 99 bottles of beer on the wall.\n"
71
+ }
72
+ ]
73
+ }
74
+ ]
75
+ }
76
+ ]
49
77
  }
@@ -1,78 +1,90 @@
1
1
  {
2
- "#": [
3
- "Here -1 is used to indicate that the value is not included in the array.",
4
- "It should be replaced with the respective expression that is idiomatic",
5
- "for the language that implements the tests.",
2
+ "exercise": "binary-search",
3
+ "version": "1.0.0",
4
+ "comments": [
5
+ "Here -1 is used to indicate that the value is not included in the array.",
6
+ "It should be replaced with the respective expression that is idiomatic",
7
+ "for the language that implements the tests.",
6
8
 
7
- "Following https://github.com/exercism/x-common/issues/234 the exercise",
8
- "should NOT include checking whether the array is sorted as it defeats",
9
- "the point of the binary search.",
9
+ "Following https://github.com/exercism/x-common/issues/234 the exercise",
10
+ "should NOT include checking whether the array is sorted as it defeats",
11
+ "the point of the binary search.",
10
12
 
11
- "The exercise should utilize an array-like (i.e. constant-time indexed)",
12
- "data structure and not a linked list. If something like an array is not",
13
- "usually used in the language the problem should not be implemented.",
14
- "See https://github.com/exercism/x-common/issues/244 for details."
15
- ],
16
- "cases": [
17
- {
18
- "description": "finds a value in an array with one element",
19
- "array": [6],
20
- "value": 6,
21
- "expected": 0
22
- },
23
- {
24
- "description": "finds a value in the middle of an array",
25
- "array": [1, 3, 4, 6, 8, 9, 11],
26
- "value": 6,
27
- "expected": 3
28
- },
29
- {
30
- "description": "finds a value at the beginning of an array",
31
- "array": [1, 3, 4, 6, 8, 9, 11],
32
- "value": 1,
33
- "expected": 0
34
- },
35
- {
36
- "description": "finds a value at the end of an array",
37
- "array": [1, 3, 4, 6, 8, 9, 11],
38
- "value": 11,
39
- "expected": 6
40
- },
41
- {
42
- "description": "finds a value in an array of odd length",
43
- "array": [1, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 634],
44
- "value": 144,
45
- "expected": 9
46
- },
47
- {
48
- "description": "finds a value in an array of even length",
49
- "array": [1, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377],
50
- "value": 21,
51
- "expected": 5
52
- },
53
- {
54
- "description": "identifies that a value is not included in the array",
55
- "array": [1, 3, 4, 6, 8, 9, 11],
56
- "value": 7,
57
- "expected": -1
58
- },
59
- {
60
- "description": "a value smaller than the array's smallest value is not included",
61
- "array": [1, 3, 4, 6, 8, 9, 11],
62
- "value": 0,
63
- "expected": -1
64
- },
65
- {
66
- "description": "a value larger than the array's largest value is not included",
67
- "array": [1, 3, 4, 6, 8, 9, 11],
68
- "value": 13,
69
- "expected": -1
70
- },
71
- {
72
- "description": "nothing is included in an empty array",
73
- "array": [],
74
- "value": 1,
75
- "expected": -1
76
- }
77
- ]
13
+ "The exercise should utilize an array-like (i.e. constant-time indexed)",
14
+ "data structure and not a linked list. If something like an array is not",
15
+ "usually used in the language the problem should not be implemented.",
16
+ "See https://github.com/exercism/x-common/issues/244 for details."
17
+ ],
18
+ "cases": [
19
+ {
20
+ "description": "finds a value in an array with one element",
21
+ "property": "find",
22
+ "array": [6],
23
+ "value": 6,
24
+ "expected": 0
25
+ },
26
+ {
27
+ "description": "finds a value in the middle of an array",
28
+ "property": "find",
29
+ "array": [1, 3, 4, 6, 8, 9, 11],
30
+ "value": 6,
31
+ "expected": 3
32
+ },
33
+ {
34
+ "description": "finds a value at the beginning of an array",
35
+ "property": "find",
36
+ "array": [1, 3, 4, 6, 8, 9, 11],
37
+ "value": 1,
38
+ "expected": 0
39
+ },
40
+ {
41
+ "description": "finds a value at the end of an array",
42
+ "property": "find",
43
+ "array": [1, 3, 4, 6, 8, 9, 11],
44
+ "value": 11,
45
+ "expected": 6
46
+ },
47
+ {
48
+ "description": "finds a value in an array of odd length",
49
+ "property": "find",
50
+ "array": [1, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 634],
51
+ "value": 144,
52
+ "expected": 9
53
+ },
54
+ {
55
+ "description": "finds a value in an array of even length",
56
+ "property": "find",
57
+ "array": [1, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377],
58
+ "value": 21,
59
+ "expected": 5
60
+ },
61
+ {
62
+ "description": "identifies that a value is not included in the array",
63
+ "property": "find",
64
+ "array": [1, 3, 4, 6, 8, 9, 11],
65
+ "value": 7,
66
+ "expected": -1
67
+ },
68
+ {
69
+ "description": "a value smaller than the array's smallest value is not included",
70
+ "property": "find",
71
+ "array": [1, 3, 4, 6, 8, 9, 11],
72
+ "value": 0,
73
+ "expected": -1
74
+ },
75
+ {
76
+ "description": "a value larger than the array's largest value is not included",
77
+ "property": "find",
78
+ "array": [1, 3, 4, 6, 8, 9, 11],
79
+ "value": 13,
80
+ "expected": -1
81
+ },
82
+ {
83
+ "description": "nothing is included in an empty array",
84
+ "property": "find",
85
+ "array": [],
86
+ "value": 1,
87
+ "expected": -1
88
+ }
89
+ ]
78
90
  }