From b1c59dcf074bfe64098981fea86de7e9b4543db9 Mon Sep 17 00:00:00 2001 From: Dmitry <40917658+evitwilly@users.noreply.github.com> Date: Wed, 7 Dec 2022 11:20:02 +0300 Subject: [PATCH] fix error "min and max algorithms are confused" --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dc8ec5e..867327e 100644 --- a/README.md +++ b/README.md @@ -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)