Skip to content

Commit 274027b

Browse files
Merge pull request #184
Map and Set
2 parents bac68e8 + 539c611 commit 274027b

File tree

8 files changed

+156
-156
lines changed

8 files changed

+156
-156
lines changed

1-js/05-data-types/07-map-set/01-array-unique-map/_js.view/test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
describe("unique", function() {
2-
it("removes non-unique elements", function() {
1+
describe("unic", function() {
2+
it("elimină elementele neunice", function() {
33
let strings = ["Hare", "Krishna", "Hare", "Krishna",
44
"Krishna", "Krishna", "Hare", "Hare", ":-O"
55
];
66

77
assert.deepEqual(unique(strings), ["Hare", "Krishna", ":-O"]);
88
});
99

10-
it("does not change the source array", function() {
10+
it("nu schuimbă matricea sursă", function() {
1111
let strings = ["Krishna", "Krishna", "Hare", "Hare"];
1212
unique(strings);
1313
assert.deepEqual(strings, ["Krishna", "Krishna", "Hare", "Hare"]);

1-js/05-data-types/07-map-set/01-array-unique-map/task.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ importance: 5
22

33
---
44

5-
# Filter unique array members
5+
# Filtrează membrii unici ai matricei
66

7-
Let `arr` be an array.
7+
Let `arr` să fie o matrice.
88

9-
Create a function `unique(arr)` that should return an array with unique items of `arr`.
9+
Creați o funcție `unique(arr)` care ar trebui să returneze o matrice cu elemente unice ale lui `arr`.
1010

11-
For instance:
11+
De exemplu:
1212

1313
```js
1414
function unique(arr) {
15-
/* your code */
15+
/* codul dumneavoastră */
1616
}
1717

1818
let values = ["Hare", "Krishna", "Hare", "Krishna",
@@ -22,6 +22,6 @@ let values = ["Hare", "Krishna", "Hare", "Krishna",
2222
alert( unique(values) ); // Hare, Krishna, :-O
2323
```
2424

25-
P.S. Here strings are used, but can be values of any type.
25+
P.S. Aici se folosesc șiruri de caractere, dar pot fi valori de orice tip.
2626

27-
P.P.S. Use `Set` to store unique values.
27+
P.P.S. Utilizați `Set` pentru a stoca valori unice.

1-js/05-data-types/07-map-set/02-filter-anagrams/_js.view/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function intersection(arr1, arr2) {
44

55
describe("aclean", function() {
66

7-
it("returns exactly 1 word from each anagram set", function() {
7+
it("returnează exact 1 cuvânt din fiecare set de anagrame", function() {
88
let arr = ["nap", "teachers", "cheaters", "PAN", "ear", "era", "hectares"];
99

1010
let result = aclean(arr);
@@ -16,7 +16,7 @@ describe("aclean", function() {
1616

1717
});
1818

19-
it("is case-insensitive", function() {
19+
it("este case-insensitive", function() {
2020
let arr = ["era", "EAR"];
2121
assert.equal(aclean(arr).length, 1);
2222
});

1-js/05-data-types/07-map-set/02-filter-anagrams/solution.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
To find all anagrams, let's split every word to letters and sort them. When letter-sorted, all anagrams are same.
1+
Pentru a găsi toate anagramele, să împărțim fiecare cuvânt în litere și să le sortăm. Atunci când sunt ordonate pe litere, toate anagramele sunt identice.
22

3-
For instance:
3+
De exemplu:
44

55
```
66
nap, pan -> anp
@@ -9,14 +9,14 @@ cheaters, hectares, teachers -> aceehrst
99
...
1010
```
1111

12-
We'll use the letter-sorted variants as map keys to store only one value per each key:
12+
Vom folosi variantele sortate pe litere ca chei de map pentru a stoca doar o singură valoare pentru fiecare cheie:
1313

1414
```js run
1515
function aclean(arr) {
1616
let map = new Map();
1717

1818
for (let word of arr) {
19-
// split the word by letters, sort them and join back
19+
// desparte cuvântul după litere, le sortează și le reunește înapoi
2020
*!*
2121
let sorted = word.toLowerCase().split('').sort().join(''); // (*)
2222
*/!*
@@ -31,9 +31,9 @@ let arr = ["nap", "teachers", "cheaters", "PAN", "ear", "era", "hectares"];
3131
alert( aclean(arr) );
3232
```
3333

34-
Letter-sorting is done by the chain of calls in the line `(*)`.
34+
Sortarea literelor se face prin lanțul de apeluri din linia `(*)`.
3535

36-
For convenience let's split it into multiple lines:
36+
Pentru conveniență să o împărțim în mai multe linii:
3737

3838
```js
3939
let sorted = word // PAN
@@ -43,21 +43,21 @@ let sorted = word // PAN
4343
.join(''); // anp
4444
```
4545

46-
Two different words `'PAN'` and `'nap'` receive the same letter-sorted form `'anp'`.
46+
Două cuvinte diferite `'PAN'` și `'nap'` primesc aceeași formă sortată pe litere `'anp'`.
4747

48-
The next line put the word into the map:
48+
Următoarea linie a pus cuvântul în hartă:
4949

5050
```js
5151
map.set(sorted, word);
5252
```
5353

54-
If we ever meet a word the same letter-sorted form again, then it would overwrite the previous value with the same key in the map. So we'll always have at maximum one word per letter-form.
54+
Dacă vom mai întâlni vreodată un cuvânt cu aceeași formă sortată pe litere, atunci va suprascrie valoarea anterioară cu aceeași cheie din map. Astfel vom avea întotdeauna maxim un cuvânt per formă de literă.
5555

56-
At the end `Array.from(map.values())` takes an iterable over map values (we don't need keys in the result) and returns an array of them.
56+
La final `Array.from(map.values())` ia o iterabilă peste valorile din hartă (nu avem nevoie de chei în rezultat) și returnează un array din acestea.
5757

58-
Here we could also use a plain object instead of the `Map`, because keys are strings.
58+
Aici am putea folosi și un obiect simplu în loc de `Map`, deoarece cheile sunt șiruri de caractere.
5959

60-
That's how the solution can look:
60+
Iată cum poate arăta soluția:
6161

6262
```js run demo
6363
function aclean(arr) {

1-js/05-data-types/07-map-set/02-filter-anagrams/task.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@ importance: 4
22

33
---
44

5-
# Filter anagrams
5+
# Filtrează anagramele
66

7-
[Anagrams](https://en.wikipedia.org/wiki/Anagram) are words that have the same number of same letters, but in different order.
7+
[Anagrame](https://en.wikipedia.org/wiki/Anagram) sunt cuvinte care au același număr de litere identice, dar în ordine diferită.
88

9-
For instance:
9+
De exemplu:
1010

1111
```
1212
nap - pan
1313
ear - are - era
1414
cheaters - hectares - teachers
1515
```
1616

17-
Write a function `aclean(arr)` that returns an array cleaned from anagrams.
17+
Scrieți o funcție `aclean(arr)` care să returneze un tablou curățat de anagrame.
1818

19-
For instance:
19+
De exemplu:
2020

2121
```js
2222
let arr = ["nap", "teachers", "cheaters", "PAN", "ear", "era", "hectares"];
2323

24-
alert( aclean(arr) ); // "nap,teachers,ear" or "PAN,cheaters,era"
24+
alert( aclean(arr) ); // "nap,teachers,ear" sau "PAN,cheaters,era"
2525
```
2626

27-
From every anagram group should remain only one word, no matter which one.
27+
Din fiecare grup de anagrame trebuie să rămână un singur cuvânt, indiferent care.
2828

1-js/05-data-types/07-map-set/03-iterable-keys/solution.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
That's because `map.keys()` returns an iterable, but not an array.
2+
Acest lucru se datorează faptului că `map.keys()` returnează un iterabil, dar nu o matrice.
33

4-
We can convert it into an array using `Array.from`:
4+
Îl putem converti într-un array folosind `Array.from`:
55

66

77
```js run

1-js/05-data-types/07-map-set/03-iterable-keys/task.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ importance: 5
22

33
---
44

5-
# Iterable keys
5+
# Chei iterabile
66

7-
We'd like to get an array of `map.keys()` in a variable and then apply array-specific methods to it, e.g. `.push`.
7+
Am dori să obținem o matrice de `map.keys()` într-o variabilă și apoi să aplicăm metode specifice matricei, e.g. `.push`.
88

9-
But that doesn't work:
9+
Dar acest lucru nu funcționează:
1010

1111
```js run
1212
let map = new Map();
@@ -16,9 +16,9 @@ map.set("name", "John");
1616
let keys = map.keys();
1717

1818
*!*
19-
// Error: keys.push is not a function
19+
// Eroare: keys.push nu este o funcție
2020
keys.push("more");
2121
*/!*
2222
```
2323

24-
Why? How can we fix the code to make `keys.push` work?
24+
De ce? Cum putem corecta codul să facem ca `keys.push` să funcționeze?

0 commit comments

Comments
 (0)