Is it possible to convert a list of tuples [(Int,Int)] as a generic way which valid to any input size ? .. i saw in various questions thats its not possible gen
[(Int,Int)]
f [] = [] f [(x, y) : xs] = x : y : f xs