'm a student, just starting working with Haskell and have problems with part of code. I does not understand how this code works. Can anyone explain my how it worked?
check :: String -> Bool
check = check' [] where
check' [] [] = True
check' _ [] = False
check' x ('(':xs) = check' ('(':x) xs
check' ('(':x) (')':xs) = check' x xs
check' _ (')':xs) = False
check' x (_ :xs) = check' x xs