mirror of
https://github.com/correl/elm.git
synced 2024-12-19 11:12:23 +00:00
15 lines
314 B
Text
15 lines
314 B
Text
|
module Hamming (..) where
|
||
|
|
||
|
import String exposing (length, toList)
|
||
|
|
||
|
|
||
|
distance : String -> String -> Maybe Int
|
||
|
distance left right =
|
||
|
if length left /= length right then
|
||
|
Nothing
|
||
|
else
|
||
|
List.map2 (\l r -> l /= r) (toList left) (toList right)
|
||
|
|> List.filter identity
|
||
|
|> List.length
|
||
|
|> Just
|