Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created February 18, 2015 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/da732154c0e868d26d88 to your computer and use it in GitHub Desktop.
Save shigemk2/da732154c0e868d26d88 to your computer and use it in GitHub Desktop.
import Data.List
numUniques :: (Eq a) => [a] -> Int
-- ポイントフリースタイルが登場しています
numUniques = length . nub
numUniques' x = (length . nub) x
main = do
print $ numUniques [3,3,3,4,5] -- 3
print $ numUniques' [3,3,3,4,5] -- 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment