Rename arguments

main
Hammy 4 years ago
parent 0009cebb33
commit e44faac958

@ -2,7 +2,7 @@ myRepeat :: a -> [a]
myRepeat n = cycle [n] myRepeat n = cycle [n]
subseq :: Int -> Int -> [a] -> [a] subseq :: Int -> Int -> [a] -> [a]
subseq first last aList = take last (drop first aList) subseq start end aList = take end (drop start aList)
inFirstHalf :: Eq a => a -> [a] -> Bool inFirstHalf :: Eq a => a -> [a] -> Bool
inFirstHalf item aList = item `elem` firstHalf inFirstHalf item aList = item `elem` firstHalf

Loading…
Cancel
Save