Забыл исправить опечатку

This commit is contained in:
2024-12-05 18:13:01 +03:00
parent de4bfa4f84
commit 14d853c878

View File

@@ -4,7 +4,7 @@ module Lib
) where
isCongruent :: Int -> Int -> Int -> Bool
isCongruent a b d = a `mod` d + 1 == b `mod` d
isCongruent a b d = a `mod` d == b `mod` d
filterByPredicate :: (a -> Bool) -> [a] -> [a]