Assignment task: In Haskell code please
Write a function squareOddsComprehension, using list comprehension, that returns the square of each odd number in the list. For example, squareOddsComprehension [0, 2, 1, 7, 8, 56, 17, 18] should return [1, 49, 289].