Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 2254507

Browse files
author
Holger Lösken
committed
Fix
1 parent dbe4238 commit 2254507

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Write a function `jump_out_of_array` that outputs
4747
- the amount of jumps until you jump out of the array
4848
- `-1` when you reach the end of the array but do not jump out
4949

50-
** Requirements:**
50+
**Requirements:**
5151

5252
- Array size is indefinite
5353
- Array elements are integers, positive and negative
@@ -85,6 +85,8 @@ _Do not_ use nested loops to solve this problem, because of a time complexity of
8585
- `A[6]` + `A[1]` = `-2` + `8` = `6`
8686
- `A[8]` + `A[0]` = `5` + `1` = `6`
8787

88+
The result here is `7`.
89+
8890
## Contribute
8991

9092
Feel free to contribute. Use the issue list to propose new tasks or open PRs. Just provide proper tests

0 commit comments

Comments
 (0)