Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test failed #57

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Exercises.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
## Loops

4. Implement function `range(start: number, end: number): array` returning
array with all numbers from the range [15, 30] including endpoints.
array with all numbers from range the start to end including endpoints.
5. Implement function `rangeOdd(start: number, end: number)` returning
array with all odd numbers from the range [15, 30] including endpoints.
array with all odd numbers from range the start to end including endpoints.

## Functions

Expand Down
4 changes: 2 additions & 2 deletions Exercises.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
## Циклы

4. Реализуйте функцию `range(start: number, end: number): array` которая отдает
массив чисел из диапазона [15, 30] включая крайние числа.
массив чисел из диапазона от start до end включая крайние числа.
5. Реализуйте функцию `rangeOdd(start: number, end: number): array` которая
отдает массив нечетных чисел из диапазона [15, 30] включая крайние числа.
отдает массив нечетных чисел из диапазона от start до end включая крайние числа.

## Функции

Expand Down