Remove unused import

This commit is contained in:
2024-12-05 10:35:03 +01:00
parent 16fbbb5971
commit ed2e74ba45
4 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1,4 @@
import Data.List (transpose, sort)
import System.IO
listDistance :: [Int] -> [Int] -> Int
listDistance xs ys = sum $ map abs $ zipWith (-) (sort xs) (sort ys)

View File

@ -1,5 +1,4 @@
import Data.List (transpose, sort, group)
import System.IO
similarityScore :: [Int] -> [Int] -> Int
similarityScore xs ys = let elemsY = [ (head y, length y) | y <- (group . sort) ys ]