Sha256: b621925b310055b6cf0377c30737780f2b5568420e19587d78f73dfb1d77f1d1
Contents?: true
Size: 422 Bytes
Versions: 322
Compression:
Stored size: 422 Bytes
Contents
module Anagram exposing (..) import String exposing (toLower, toList) detect : String -> List String -> List String detect word candidates = let original = toLower word ref = normalize word in List.filter (\w -> normalize w == ref && toLower w /= original) candidates normalize : String -> List Char normalize word = word |> toLower |> toList |> List.sort
Version data entries
322 entries across 322 versions & 1 rubygems