Skip to content

Instantly share code, notes, and snippets.

@danigb
Created May 25, 2016 08:23
Show Gist options
  • Select an option

  • Save danigb/223e56b030d40f275682ab6d8b78a70a to your computer and use it in GitHub Desktop.

Select an option

Save danigb/223e56b030d40f275682ab6d8b78a70a to your computer and use it in GitHub Desktop.
normalizedPcs v1
import List exposing (map, head)
...
normalizedPcs : List(Note) -> List Pc
normalizedPcs notes =
let
first = head notes
in
map (\note -> noteToPc (note - first)) notes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment