You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 1-js/05-data-types/07-map-set/02-filter-anagrams/solution.md
+12-12
Original file line number
Diff line number
Diff 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.
Letter-sorting is done by the chain of calls in the line`(*)`.
34
+
Sortarea literelor se face prin lanțul de apeluri din linia`(*)`.
35
35
36
-
For convenience let's split it into multiple lines:
36
+
Pentru conveniență să o împărțim în mai multe linii:
37
37
38
38
```js
39
39
let sorted = word // PAN
@@ -43,21 +43,21 @@ let sorted = word // PAN
43
43
.join(''); // anp
44
44
```
45
45
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'`.
47
47
48
-
The next line put the word into the map:
48
+
Următoarea linie a pus cuvântul în hartă:
49
49
50
50
```js
51
51
map.set(sorted, word);
52
52
```
53
53
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ă.
55
55
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.
57
57
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.
0 commit comments