Haskell finding mean of cubes of odd members Any ideas? [closed]

I would give you some hints to get you started up:

  1. Use filter function to get the odd members of the given list.
  2. Cube the resultant list using map function.
  3. Find the mean of them by summing the list and dividing it by the length of the list.

Browse More Popular Posts

Leave a Comment