Skip to content

Commit 92db225

Browse files
author
Chris Pilcher
committed
Fixing value typo in readme
1 parent a819825 commit 92db225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Select Minimum Maximum/README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Pick the next pair of numbers from the list, `[ 3, 9 ]`, `3` is less than `9` so
6464

6565
Pick the next pair of numbers from the list, `[ 4, 6 ]`, `4` is less than `6` so we compare `4` to the current minimum `3` and `6` to the current maximum `9`. `4` is greater than `3` so the minimum does not change. `6` is less than `9` so the maximum does not change.
6666

67-
The result is a minimum of `2` and a maximum of `9`.
67+
The result is a minimum of `3` and a maximum of `9`.
6868

6969
#### The code
7070

0 commit comments

Comments
 (0)