-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: sayedsust/javascript-algorithms
base: master
head repository: trekhleb/javascript-algorithms
compare: master
Commits on Jan 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7d8d397 - Browse repository at this point
Copy the full SHA 7d8d397View commit details -
Update README.es-ES.md (trekhleb#836)
spelling mistake Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 3372666 - Browse repository at this point
Copy the full SHA 3372666View commit details -
docs: add README.tr-TR.md (trekhleb#833)
* docs: added Turkish translation of Heap (data structures) algorithm * docs: removed other languages section from translation file Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5cb7e38 - Browse repository at this point
Copy the full SHA 5cb7e38View commit details -
FIx some typos in Spanish Readme (trekhleb#829)
Fix some typos and translate last quote line to Spanish Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5d57f1d - Browse repository at this point
Copy the full SHA 5d57f1dView commit details -
Addition of slight grammatical corrections (trekhleb#828)
Addition of slight grammatical corrections to documentation in PT-BR Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1b6a6d5 - Browse repository at this point
Copy the full SHA 1b6a6d5View commit details -
fixed: fixed error in linked list README.ko-KR (trekhleb#820)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 41ace46 - Browse repository at this point
Copy the full SHA 41ace46View commit details -
Fixed typos in the turkish and added descriptions (trekhleb#816)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4704820 - Browse repository at this point
Copy the full SHA 4704820View commit details -
Null Reference Exception (trekhleb#817)
When `n.next = tail` is true, we assign `n` to `tail` and `null` to `tail.next`, so `n.next` also becomes `null`. Then we assign `n.next.next` (because now `n.next` is `null`), we try to get `next` of `null`. That is why we should add an `else` case to check if `n.next` is not equal to `tail`. Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 53781db - Browse repository at this point
Copy the full SHA 53781dbView commit details -
Add Chinese Translation (trekhleb#815)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for dd3cbe1 - Browse repository at this point
Copy the full SHA dd3cbe1View commit details -
Update main README.ru-RU, add README.ru-RU for cryptography/caesar-ci…
…pher (trekhleb#810) * Update main README.ru-RU * Add README.ru-RU for cryptography/caesar-cipher Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8c433f9 - Browse repository at this point
Copy the full SHA 8c433f9View commit details -
issue trekhleb#631 solved (trekhleb#809)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d80486f - Browse repository at this point
Copy the full SHA d80486fView commit details -
Typo in README.id-ID.md (trekhleb#808)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6cd19c9 - Browse repository at this point
Copy the full SHA 6cd19c9View commit details -
Linked List -- PT-BR (trekhleb#805)
- typos - reformulação de "This structure allows for efficient insertion or removal of elements from any position in the sequence during iteration." - "vinculadas" a "encadeadas" pra manter o mesmo termo do título Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 9671b0c - Browse repository at this point
Copy the full SHA 9671b0cView commit details -
Update README.zh-CN.md (trekhleb#804)
* Update README.zh-CN.md 双向链表的删除部分,逻辑修改 * Update README.zh-CN.md
Configuration menu - View commit details
-
Copy full SHA for e844a2f - Browse repository at this point
Copy the full SHA e844a2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 457b16a - Browse repository at this point
Copy the full SHA 457b16aView commit details -
Fixed: Translation Typo Error (trekhleb#796)
This pull request aims at closing the issue trekhleb#765 by fixing the typo in the translation. Specifically, Get Bit and Clear Bit, there should be AND operation (&), but not ADD operation (+) Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 236379b - Browse repository at this point
Copy the full SHA 236379bView commit details -
Update README.tr-TR.md (trekhleb#789)
Fix a typo Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 80d2f50 - Browse repository at this point
Copy the full SHA 80d2f50View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d13e68 - Browse repository at this point
Copy the full SHA 7d13e68View commit details
Commits on Jan 23, 2022
-
Fixes README.pt-BR.md (trekhleb#787)
General formatting and translation fixes
Configuration menu - View commit details
-
Copy full SHA for 396f5b8 - Browse repository at this point
Copy the full SHA 396f5b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4b5110 - Browse repository at this point
Copy the full SHA b4b5110View commit details -
added palindromeCheck (trekhleb#806)
* added readme * added readme * adding palindromeCheck * adjusted README Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for ea28788 - Browse repository at this point
Copy the full SHA ea28788View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90addf9 - Browse repository at this point
Copy the full SHA 90addf9View commit details
Commits on Jan 25, 2022
-
Add Korean translation for data-structures Hash Table & Heap (trekhl…
…eb#843) * Create README.ko-KR.md * Create README.ko-KR.md * Update README.ko-KR.md * Update README.ko-KR.md * Update README.ko-KR.md * Update README.ko-KR.md
Configuration menu - View commit details
-
Copy full SHA for 42c6718 - Browse repository at this point
Copy the full SHA 42c6718View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d81951 - Browse repository at this point
Copy the full SHA 6d81951View commit details -
Grammar change and "Block " to "Jump" (trekhleb#780)
* Grammar change and "Block " to "Jump" ジャンプ is jump in katakana * Update README.ja-JP.md * Update README.ja-JP.md
Configuration menu - View commit details
-
Copy full SHA for cc26b93 - Browse repository at this point
Copy the full SHA cc26b93View commit details -
Updating a typo in " Get bit" section (trekhleb#777)
typo- ADD-> AND operation
Configuration menu - View commit details
-
Copy full SHA for 40c54d8 - Browse repository at this point
Copy the full SHA 40c54d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae91537 - Browse repository at this point
Copy the full SHA ae91537View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5dc1708 - Browse repository at this point
Copy the full SHA 5dc1708View commit details -
Configuration menu - View commit details
-
Copy full SHA for c29b12e - Browse repository at this point
Copy the full SHA c29b12eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a83ecc - Browse repository at this point
Copy the full SHA 5a83eccView commit details -
Add Korean translation (trekhleb#767)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d11f7fa - Browse repository at this point
Copy the full SHA d11f7faView commit details -
Add Korean translation (trekhleb#752)
* Add Korean translation * Add link to Korean translation in Queue README.
Configuration menu - View commit details
-
Copy full SHA for d0c359e - Browse repository at this point
Copy the full SHA d0c359eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b64117 - Browse repository at this point
Copy the full SHA 5b64117View commit details
Commits on Jan 26, 2022
-
feat: add linkedList insert method (trekhleb#774)
Co-authored-by: byj <youjia.bi@weimob.com>
Configuration menu - View commit details
-
Copy full SHA for 7f7e4ea - Browse repository at this point
Copy the full SHA 7f7e4eaView commit details -
[ID] Minor Improvements (trekhleb#742)
* fix: `menghapus` typo should be `menghapus` instead of `mengahpus` * fix: translations Should be `algoritma` instead of `algoritme`. etc is in EN, replace it with `dan lain-lain` (etc in ID) * fix: adding space to z-algorithm since Z is the name of the algorithm. Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 00887c2 - Browse repository at this point
Copy the full SHA 00887c2View commit details -
Factorial turkish readme (trekhleb#740)
* added turkish readme for factorial * Added redirect link to Turkish document.
Configuration menu - View commit details
-
Copy full SHA for c1b2e89 - Browse repository at this point
Copy the full SHA c1b2e89View commit details -
Linked list turkish readme (trekhleb#739)
* added README.tr-TR.md for linked-list * added gap * linked list description edited.
Configuration menu - View commit details
-
Copy full SHA for aa0f47e - Browse repository at this point
Copy the full SHA aa0f47eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a49b70 - Browse repository at this point
Copy the full SHA 2a49b70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ca459f - Browse repository at this point
Copy the full SHA 9ca459fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1216d00 - Browse repository at this point
Copy the full SHA 1216d00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ef78c4 - Browse repository at this point
Copy the full SHA 7ef78c4View commit details
Commits on Jan 27, 2022
-
Created Quicksort documentation in pt-BR (trekhleb#735)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8064915 - Browse repository at this point
Copy the full SHA 8064915View commit details -
Configuration menu - View commit details
-
Copy full SHA for c2e5b3d - Browse repository at this point
Copy the full SHA c2e5b3dView commit details -
Fix a typo in linked list's "ru" readme (trekhleb#723)
Deletion time complexity from O(1) to O(n)
Configuration menu - View commit details
-
Copy full SHA for d581548 - Browse repository at this point
Copy the full SHA d581548View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c4e028 - Browse repository at this point
Copy the full SHA 1c4e028View commit details -
Fixing typos in Linked List README.es-ES.md (trekhleb#710)
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d227646 - Browse repository at this point
Copy the full SHA d227646View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e8f28f - Browse repository at this point
Copy the full SHA 8e8f28fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f0ec139 - Browse repository at this point
Copy the full SHA f0ec139View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9083fe1 - Browse repository at this point
Copy the full SHA 9083fe1View commit details -
Configuration menu - View commit details
-
Copy full SHA for b816825 - Browse repository at this point
Copy the full SHA b816825View commit details
There are no files selected for viewing