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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b6aba1544337c241fe655409dc6f50da3ec7b21a
4
- data.tar.gz: 9e50e4e647c05032ada9d09a96130d2543b7a20e
3
+ metadata.gz: 969f819a56ebad0a07818581fb361a9fa5df48ca
4
+ data.tar.gz: fb1bb3ce91958dd80bf4ef664f52482d468f21c4
5
5
  SHA512:
6
- metadata.gz: 607f0c63e16fa33ba4d4dce2389451ed73afc0770e7bdb5dde7181a01047ed1474dfac5bcbdc50b3842eec47242f58dcee14d05abfc968b6c022a06c956ae506
7
- data.tar.gz: 5c2b8db8780598b58ad8a09c4637dccdb264841f5746e0c82f66d864b10c5483a6703edc04a9a307cf35dd14b2ad7833a7d49762d14e1c534a69a1c46580ebdb
6
+ metadata.gz: 574cadab53be23a4a9ed57fdd380621dabd0fc2c7b3040da857368f170ef9a0d85e8e7f99a6267ddd7c1f0f36200812ada2715586312ebd650aaf318733a1dfc
7
+ data.tar.gz: f8fa4268b815a36662d65771aa83b993927591ce80944a6863ecc268f8b34bc48e1b387a655a99c8f4e43c946522f433ce4dbb4050467b0ee2a602bf29ffaf0a
data/common/TOPICS.txt CHANGED
@@ -2,7 +2,7 @@ Basic concepts
2
2
  --------------
3
3
  Abstract classes
4
4
  Callbacks
5
- Control-flow (if-else statements)
5
+ Control-flow (conditionals)
6
6
  Control-flow (loops)
7
7
  Events
8
8
  Exception handling
@@ -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
- The largest integer allowed is `0FFFFFFF`, which translates to 4 bytes variable length.
12
- Here are examples of delta-times as 32-bit values, and the variable length quantities that they translate to:
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
  ```
@@ -1,3 +1,3 @@
1
1
  module Trackler
2
- VERSION = "2.0.6.4"
2
+ VERSION = "2.0.6.5"
3
3
  end
@@ -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
- it('clocks with same time', () => {
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, nil, leaf(3)), bt(6, leaf(7), leaf(8))).
23
- t6() -> bt(1, bt(2, nil, leaf(5)), leaf(4)).
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(),
@@ -5,9 +5,13 @@
5
5
  "active": true,
6
6
  "deprecated": [
7
7
  "accumulate",
8
+ "binary",
8
9
  "bottles",
9
10
  "counter",
10
- "point-mutations"
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": 1,
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",
@@ -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
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-06 00:00:00.000000000 Z
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