mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 07:01:18 +08:00
Add Spanish link for the Linked List README.
This commit is contained in:
parent
88cef5f548
commit
4b6c601158
@ -6,9 +6,8 @@ a power of two or not.
|
||||
**Naive solution**
|
||||
|
||||
In naive solution we just keep dividing the number by two
|
||||
unless the number becomes `1` and every time we do so we
|
||||
check that remainder after division is always `0`. Otherwise
|
||||
the number can't be a power of two.
|
||||
unless the number becomes `1` and every time we do so, we
|
||||
check that remainder after division is always `0`. Otherwise, the number can't be a power of two.
|
||||
|
||||
**Bitwise solution**
|
||||
|
||||
|
@ -5,7 +5,8 @@ _Read this in other languages:_
|
||||
[_Русский_](README.ru-RU.md),
|
||||
[_日本語_](README.ja-JP.md),
|
||||
[_Português_](README.pt-BR.md),
|
||||
[_한국어_](README.ko-KR.md)
|
||||
[_한국어_](README.ko-KR.md),
|
||||
[_Español_](README.es-ES.md),
|
||||
|
||||
In computer science, a **linked list** is a linear collection
|
||||
of data elements, in which linear order is not given by
|
||||
|
Loading…
Reference in New Issue
Block a user