Skip to content

Instantly share code, notes, and snippets.

@mrioqueiroz
mrioqueiroz / cpf.hs
Last active April 25, 2020 23:56
Validador de CPF
module Cpf where
import Data.Char (isDigit)
import Data.Foldable (foldl')
checkIfHasCorrectSize :: String -> Bool
checkIfHasCorrectSize x
| length (removeSpecialCharacters x) == 11 = True
| otherwise = False