Add Spanish link for the Linked List README.

This commit is contained in:
Oleksii Trekhleb 2020-12-20 20:18:12 +01:00
parent 88cef5f548
commit 4b6c601158
2 changed files with 24 additions and 24 deletions

View File

@ -6,9 +6,8 @@ a power of two or not.
**Naive solution** **Naive solution**
In naive solution we just keep dividing the number by two In naive solution we just keep dividing the number by two
unless the number becomes `1` and every time we do so we unless the number becomes `1` and every time we do so, we
check that remainder after division is always `0`. Otherwise check that remainder after division is always `0`. Otherwise, the number can't be a power of two.
the number can't be a power of two.
**Bitwise solution** **Bitwise solution**

View File

@ -5,7 +5,8 @@ _Read this in other languages:_
[_Русский_](README.ru-RU.md), [_Русский_](README.ru-RU.md),
[_日本語_](README.ja-JP.md), [_日本語_](README.ja-JP.md),
[_Português_](README.pt-BR.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 In computer science, a **linked list** is a linear collection
of data elements, in which linear order is not given by of data elements, in which linear order is not given by