observer.js
00887c2d40
[ID] Minor Improvements ( #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>
2022-01-26 20:35:01 +01:00
qiugu
7f7e4eae3e
feat: add linkedList insert method ( #774 )
...
Co-authored-by: byj <youjia.bi@weimob.com>
2022-01-26 20:29:51 +01:00
Oleksii Trekhleb
5b64117a2c
Fex READMEs.
2022-01-25 17:56:34 +01:00
Sewook Han
d0c359e990
Add Korean translation ( #752 )
...
* Add Korean translation
* Add link to Korean translation in Queue README.
2022-01-25 17:54:01 +01:00
Sewook Han
d11f7fadd6
Add Korean translation ( #767 )
...
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-25 17:48:56 +01:00
Anton Kazarinov
5a83ecc00d
fixed spelling error for hash-table (ru) ( #775 )
2022-01-25 10:04:32 +01:00
OscarRG
c29b12ee3b
fix typos ( #771 )
2022-01-25 10:03:19 +01:00
Bravo Yeung
5dc17089bc
Correct inaccurate Chinese translation. ( #768 )
2022-01-25 10:02:35 +01:00
OscarRG
ae915372d9
fix typos ( #773 )
2022-01-25 09:39:11 +01:00
Suman kumar
40c54d8354
Updating a typo in " Get bit" section ( #777 )
...
typo- ADD-> AND operation
2022-01-25 09:37:30 +01:00
kyong4
cc26b93f31
Grammar change and "Block " to "Jump" ( #780 )
...
* Grammar change and "Block " to "Jump"
ジャンプ is jump in katakana
* Update README.ja-JP.md
* Update README.ja-JP.md
2022-01-25 09:36:45 +01:00
儿时
6d8195154a
Add Chinise Translation ( #842 )
2022-01-25 09:34:17 +01:00
kimzerovirus
42c6718cb0
Add Korean translation for data-structures Hash Table & Heap ( #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
2022-01-25 09:32:01 +01:00
Oleksii Trekhleb
90addf9b18
Code/README fixes for the "Palindrome Check".
2022-01-23 21:47:57 +01:00
liamlylehr
ea28788ed8
added palindromeCheck ( #806 )
...
* added readme
* added readme
* adding palindromeCheck
* adjusted README
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-23 21:42:43 +01:00
Piotr Łysik
b4b511005b
Update README.pl-PL.md ( #785 )
...
Typo fix
2022-01-23 21:36:02 +01:00
Matheus Machado
396f5b8feb
Fixes README.pt-BR.md ( #787 )
...
General formatting and translation fixes
2022-01-23 21:34:08 +01:00
Oleksii Trekhleb
7d13e6863a
README fixes.
2022-01-22 10:50:33 +01:00
Halil CAKAR
80d2f508d3
Update README.tr-TR.md ( #789 )
...
Fix a typo
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:49:30 +01:00
Kush Gabani
236379b04c
Fixed: Translation Typo Error ( #796 )
...
This pull request aims at closing the issue #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>
2022-01-22 10:48:15 +01:00
edegil
457b16a5c9
Add Korean translation for data-structures/stack ( #797 )
2022-01-22 10:44:22 +01:00
jackbyebye1024
e844a2f894
Update README.zh-CN.md ( #804 )
...
* Update README.zh-CN.md
双向链表的删除部分,逻辑修改
* Update README.zh-CN.md
2022-01-22 10:43:11 +01:00
joaojgabriel
9671b0c4b9
Linked List -- PT-BR ( #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>
2022-01-22 10:42:36 +01:00
Muhammad Affandes
6cd19c9569
Typo in README.id-ID.md ( #808 )
...
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:37:23 +01:00
Samay Sagar
d80486f1c6
issue #631 solved ( #809 )
...
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:35:06 +01:00
Kirill Skvortsov
8c433f9b5d
Update main README.ru-RU, add README.ru-RU for cryptography/caesar-cipher ( #810 )
...
* Update main README.ru-RU
* Add README.ru-RU for cryptography/caesar-cipher
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:25:59 +01:00
儿时
dd3cbe1bfd
Add Chinese Translation ( #815 )
...
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:21:37 +01:00
Seymur
53781db275
Null Reference Exception ( #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>
2022-01-22 10:19:14 +01:00
ilkererkek
47048202fd
Fixed typos in the turkish and added descriptions ( #816 )
...
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:13:29 +01:00
Hyewon Kwak
41ace46d48
fixed: fixed error in linked list README.ko-KR ( #820 )
...
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:11:41 +01:00
Gérley Adriano
1b6a6d5812
Addition of slight grammatical corrections ( #828 )
...
Addition of slight grammatical corrections to documentation in PT-BR
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:09:38 +01:00
Israel Teneda
5d57f1db24
FIx some typos in Spanish Readme ( #829 )
...
Fix some typos and translate last quote line to Spanish
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:08:30 +01:00
Elif
5cb7e38299
docs: add README.tr-TR.md ( #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>
2022-01-22 10:05:55 +01:00
William Joao Cubillos Quintero
3372666d32
Update README.es-ES.md ( #836 )
...
spelling mistake
Co-authored-by: Oleksii Trekhleb <trehleb@gmail.com>
2022-01-22 10:03:57 +01:00
Oleksii Trekhleb
7d8d3977a2
Upgrade dependencies. ( #841 )
2022-01-22 09:58:38 +01:00
Oleksii Trekhleb
9bb60fa72f
Add the Genetic Algorithm example.
2021-10-28 21:10:23 +02:00
Oleksii Trekhleb
de496a2545
Update the cover for Weighted Random algorithm.
2021-10-22 18:15:44 +02:00
Oleksii Trekhleb
683722170b
Update the cover for Weighted Random algorithm.
2021-10-22 14:05:31 +02:00
Oleksii Trekhleb
17bfb551c0
Add Weighted Random cover.
2021-10-22 10:16:37 +02:00
Oleksii Trekhleb
99945f30de
Add the "Weighted Random" algorithm ( #792 )
...
* Add the link to the Weighted Random algorithm to the main README.
* Add Weighted Random implementation and tests.
* Add Weighted Random README.
* Add Weighted Random README.
* Add Weighted Random README.
2021-10-22 09:56:44 +02:00
Oleksii Trekhleb
d0576a2594
Upgrade dependencies. ( #790 )
2021-10-18 18:02:40 +02:00
Oleksii Trekhleb
4548296aff
Binary representation of the floating-point numbers.
2021-07-26 11:55:40 +02:00
Oleksii Trekhleb
2ad5617a4b
Binary representation of the floating-point numbers.
2021-07-26 07:44:21 +02:00
Oleksii Trekhleb
71da6df633
Binary representation of the floating-point numbers.
2021-07-26 07:43:07 +02:00
Oleksii Trekhleb
badf301ba5
Binary representation of the floating-point numbers.
2021-07-16 14:39:35 +02:00
Oleksii Trekhleb
b2d1ec83f0
Binary representation of floating-point numbers ( #737 )
...
* Add "Binary representation of floating point numbers" section.
* Adding a half-precision explanatory picture.
* Binary representation of the floating-point numbers.
2021-07-16 11:51:53 +02:00
Oleksii Trekhleb
433515f1b2
Fix typo in READMEs.
2021-05-26 10:55:57 +02:00
Oleksii Trekhleb
ee35bd6240
Testing Codecov integration without web-hooks.
2021-05-26 10:29:05 +02:00
Oleksii Trekhleb
6d2d8c9379
Testing Codecov integration without web-hooks.
2021-05-18 08:44:13 +02:00
Oleksii Trekhleb
8a24fbfac9
Adding more details on how to run the playground code to address the issue #705 .
2021-05-14 09:56:18 +02:00