fix error "min and max algorithms are confused"

This commit is contained in:
Dmitry
2022-12-07 11:20:02 +03:00
committed by GitHub
parent a76a6a2055
commit b1c59dcf07

View File

@ -73,8 +73,8 @@ Content:
* [FizzBuzz](/src/main/kotlin/other/FizzBuzz.kt)
* [Reverse Array](/src/main/kotlin/other/ReverseArray.kt)
* [Sieve of Eratosthenes](/src/main/kotlin/other/SieveOfEratosthenes.kt)
* [Finding the minimum](/src/main/kotlin/other/Max.kt)
* [Finding the maximum](/src/main/kotlin/other/Min.kt)
* [Finding the minimum](/src/main/kotlin/other/Min.kt)
* [Finding the maximum](/src/main/kotlin/other/Max.kt)
* [The square root of a number](/src/main/kotlin/other/Sqrt.kt)
* [Finite state machine](/src/main/kotlin/other/BinaryDigitsCounter.kt)
* [ParenthesisCheck](/src/main/kotlin/other/ParenthesisCheck.kt)