TheIronYard--Orlando / 2015--SUMMER--ROR

Resources and homework for the Summer 2015 Ruby on Rails cohort @TheIronYard--Orlando.
9 stars 6 forks source link

22--Javascript-or-maybe-Yavascript--John Bier #153

Open johnmbier opened 9 years ago

johnmbier commented 9 years ago
johnmbier commented 9 years ago

Code wars def pitch_class (note) value = note notes = {'C' => 0, 'C#' => 1, 'Cb' => 11, 'D' => 2, 'D#' => 3, 'Db' => 1, 'E' => 4, 'E#' => 5, 'Eb' => 3, 'F' => 5, 'F#' => 6, 'Fb' => 4, 'G' => 7, 'G#' => 8, 'Gb' => 6, 'A' => 9, 'A#' => 10,'Ab' => 8, 'B' => 11,'B#' => 0, 'Bb' => 10,} notes[value] end