Quick actions

cmd+k|ctrl+k

Navigation

Languages

diff

Snippet info

Language

Haskell

Visibility

public

Author

danielmg17

Created

2019-06-06T21:36:01Z

Updated

2019-06-07T14:21:49Z

import Diff

--test
main = do
    let x = [1,2,3,4,5]
        y = [1,0,3,6,5]
    print $ diff x y
    print $ diffIndex x y
INFO