trackler 2.0.6.4 → 2.0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/common/TOPICS.txt +1 -1
- data/common/exercises/variable-length-quantity/description.md +2 -2
- data/lib/trackler/version.rb +1 -1
- data/tracks/ecmascript/exercises/clock/clock.spec.js +1 -1
- data/tracks/erlang/docs/ABOUT.md +7 -0
- data/tracks/erlang/exercises/zipper/zipper_tests.erl +2 -2
- data/tracks/go/config.json +13 -23
- data/tracks/swift/docs/TESTS.md +1 -1
- 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: 969f819a56ebad0a07818581fb361a9fa5df48ca
|
4
|
+
data.tar.gz: fb1bb3ce91958dd80bf4ef664f52482d468f21c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 574cadab53be23a4a9ed57fdd380621dabd0fc2c7b3040da857368f170ef9a0d85e8e7f99a6267ddd7c1f0f36200812ada2715586312ebd650aaf318733a1dfc
|
7
|
+
data.tar.gz: f8fa4268b815a36662d65771aa83b993927591ce80944a6863ecc268f8b34bc48e1b387a655a99c8f4e43c946522f433ce4dbb4050467b0ee2a602bf29ffaf0a
|
data/common/TOPICS.txt
CHANGED
@@ -8,8 +8,8 @@ To indicate which is the last byte of the series, you leave bit #7 clear.
|
|
8
8
|
In all of the preceding bytes, you set bit #7.
|
9
9
|
|
10
10
|
So, if an integer is between `0-127`, it can be represented as one byte.
|
11
|
-
|
12
|
-
Here are examples of
|
11
|
+
Although VLQ can deal with numbers of arbitrary sizes, for this exercise we will restrict ourselves to only numbers that fit in a 32-bit unsigned integer.
|
12
|
+
Here are examples of integers as 32-bit values, and the variable length quantities that they translate to:
|
13
13
|
|
14
14
|
|
15
15
|
```
|
data/lib/trackler/version.rb
CHANGED
@@ -150,7 +150,7 @@ describe('Clock', () => {
|
|
150
150
|
|
151
151
|
describe('Construct two separate clocks, set times, test if they are equal', () => {
|
152
152
|
|
153
|
-
|
153
|
+
xit('clocks with same time', () => {
|
154
154
|
expect(at(15, 37).equals(at(15, 37))).toBeTruthy();
|
155
155
|
});
|
156
156
|
|
@@ -0,0 +1,7 @@
|
|
1
|
+
Erlang is a programming language used to build massively scalable soft real-time
|
2
|
+
systems with requirements on high availability. Some of its uses are in telecoms,
|
3
|
+
banking, e-commerce, computer telephony and instant messaging. Erlang's runtime
|
4
|
+
system has built-in support for concurrency, distribution and fault tolerance.
|
5
|
+
|
6
|
+
The above description is a quote taken directly from the 'Getting Started'
|
7
|
+
section of [the Erlang homepage](www.erlang.org).
|
@@ -19,8 +19,8 @@ t1() -> bt(1, bt(2, empty(), leaf(3)), leaf(4)).
|
|
19
19
|
t2() -> bt(1, bt(5, empty(), leaf(3)), leaf(4)).
|
20
20
|
t3() -> bt(1, bt(2, leaf(5), leaf(3)), leaf(4)).
|
21
21
|
t4() -> bt(1, leaf(2), leaf(4)).
|
22
|
-
t5() -> bt(1, bt(2,
|
23
|
-
t6() -> bt(1, bt(2,
|
22
|
+
t5() -> bt(1, bt(2, empty(), leaf(3)), bt(6, leaf(7), leaf(8))).
|
23
|
+
t6() -> bt(1, bt(2, empty(), leaf(5)), leaf(4)).
|
24
24
|
|
25
25
|
data_is_retained_test() ->
|
26
26
|
Exp = t1(),
|
data/tracks/go/config.json
CHANGED
@@ -5,9 +5,13 @@
|
|
5
5
|
"active": true,
|
6
6
|
"deprecated": [
|
7
7
|
"accumulate",
|
8
|
+
"binary",
|
8
9
|
"bottles",
|
9
10
|
"counter",
|
10
|
-
"
|
11
|
+
"hexadecimal",
|
12
|
+
"octal",
|
13
|
+
"point-mutations",
|
14
|
+
"trinary"
|
11
15
|
],
|
12
16
|
"ignored": [
|
13
17
|
"error-handling",
|
@@ -112,9 +116,15 @@
|
|
112
116
|
"topics": []
|
113
117
|
},
|
114
118
|
{
|
115
|
-
"difficulty":
|
119
|
+
"difficulty": 2,
|
116
120
|
"slug": "grains",
|
117
|
-
"topics": [
|
121
|
+
"topics": [
|
122
|
+
"Control-flow (if-else statements)",
|
123
|
+
"Bitwise operations",
|
124
|
+
"Mathematics",
|
125
|
+
"Type conversion",
|
126
|
+
"Integers"
|
127
|
+
]
|
118
128
|
},
|
119
129
|
{
|
120
130
|
"difficulty": 1,
|
@@ -206,11 +216,6 @@
|
|
206
216
|
"slug": "word-count",
|
207
217
|
"topics": []
|
208
218
|
},
|
209
|
-
{
|
210
|
-
"difficulty": 1,
|
211
|
-
"slug": "binary",
|
212
|
-
"topics": []
|
213
|
-
},
|
214
219
|
{
|
215
220
|
"difficulty": 1,
|
216
221
|
"slug": "allergies",
|
@@ -291,11 +296,6 @@
|
|
291
296
|
"slug": "diffie-hellman",
|
292
297
|
"topics": []
|
293
298
|
},
|
294
|
-
{
|
295
|
-
"difficulty": 1,
|
296
|
-
"slug": "octal",
|
297
|
-
"topics": []
|
298
|
-
},
|
299
299
|
{
|
300
300
|
"difficulty": 1,
|
301
301
|
"slug": "beer-song",
|
@@ -331,16 +331,6 @@
|
|
331
331
|
"slug": "saddle-points",
|
332
332
|
"topics": []
|
333
333
|
},
|
334
|
-
{
|
335
|
-
"difficulty": 1,
|
336
|
-
"slug": "trinary",
|
337
|
-
"topics": []
|
338
|
-
},
|
339
|
-
{
|
340
|
-
"difficulty": 1,
|
341
|
-
"slug": "hexadecimal",
|
342
|
-
"topics": []
|
343
|
-
},
|
344
334
|
{
|
345
335
|
"difficulty": 1,
|
346
336
|
"slug": "meetup",
|
data/tracks/swift/docs/TESTS.md
CHANGED
@@ -8,7 +8,7 @@ These instructions are written with the expectation that some readers will be ve
|
|
8
8
|
|
9
9
|
_As far as housekeeping chores go, you are closer to the finish line than it appears._
|
10
10
|
|
11
|
-
###Overview
|
11
|
+
### Overview
|
12
12
|
|
13
13
|
To complete an Exercism exercise, you will work primarily with three files:
|
14
14
|
|
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.6.
|
4
|
+
version: 2.0.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katrina Owen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|
@@ -2284,6 +2284,7 @@ files:
|
|
2284
2284
|
- tracks/erlang/_test/check-exercises.escript
|
2285
2285
|
- tracks/erlang/bin/fetch-configlet
|
2286
2286
|
- tracks/erlang/config.json
|
2287
|
+
- tracks/erlang/docs/ABOUT.md
|
2287
2288
|
- tracks/erlang/docs/INSTALLATION.md
|
2288
2289
|
- tracks/erlang/docs/LEARNING.md
|
2289
2290
|
- tracks/erlang/docs/TESTS.md
|