I need to create a function in Haskell, that works in the following way
periodicidad :: [Integer] -> [Integer]
periodicidad [1,2,3,4,1,2,3,4...] = [1,2,3,4]
periodicidad [0,1,2,5,4,3,0,1,2,5,4...] = [0,1,2,5,4,3]
That is to say, that fro...
asked by
10.02.2018 / 19:43