'''
Created on Nov 2, 2014

@author: rodger
'''

def createDictionary(songmap, songs):
    #dictionary entries should have the song title string as a key and a 
    #three-element list with the counts for how many times the song got
    #each corresponding place as the value
    #EXAMPLE: { "Shake It Off": [3, 2, 0] }
    
    #todo
    print



            
#problem
songs = ["Hey Jude:Let it be:Day Tripper",
"Let it be:Drive my car:Hey Jude",
"I want to hold your hand:Day Tripper:Help!",
"Born to run:Thunder road:She's the one",
"Hungry heart:The river:Born to run",
"The river:Thunder road:Drive my car", 
"Angie:Start me up:Ruby Tuesday",
"Born to run:Angie:Drive my car"]

print songs
songmap = {}
createDictionary(songmap, songs)
print songmap

