December 5th

As long as a piece of string

Santa likes his elves to read and has asked them to make a note of any words associated with Christmas in a shared spreadsheet. He doesn't love how long some of these are however. He has decided that the magic length of any word should be shortened to just five characters. 

Your task is to look at each of the words. If a word is over five characters, you'll need to store the number of characters that this word exceeds Santa's limit. 

For example, Jack Frost has a total of 10 characters, this is 5 over Santa's limit.

You'll need to do this for all the words in the list. Your total is your key.

For example:

strings = [ 'Crisp', 'Boughs of Holly', 'Turtleneck', 'Frost' ]

Crisp is 5 characters long so ignore.

Boughs of Holly is 15 characters long so the total at this point is 10.

Turtleneck is 10 characters long so the total now becomes 15.

Frost is 5 characters so ignore.

Your final total for this list is 15.

Your data set:

strings = ['Jack Frost', 'Warming', 'Red-nosed Reindeer', 'Figgy Pudding', 'Chapstick', 'Caroling Together', 'Poinsettia', 'Sleigh', 'Wool', 'Igloo', 'Rejoice', 'Winterlude', 'Deck the Halls', 'Poinsettia Plant', 'Chill', 'Evergreen Tree', 'Winter Wonderland', 'Gloves', 'Lighted Candles', 'Snow', 'Wintergreen', 'Snowshoeing', 'Jingle All the Way', 'Comfort and Joy', 'Partridge in a Pear Tree', 'Festive Feast', 'North Star', 'Peace on Earth', 'Silver Tinsel', 'Sugar Cookies', 'Epiphany', 'Snowbound', 'Mirthful', 'Snowboarding', 'Hockey', 'Powder Snow', 'Twinkling', 'Sleigh Bells', 'Sled', 'Christmas Morning', 'Northern Lights', 'Silent Night', 'Shepherd', 'Sweater Weather', 'Red Velvet', 'Snow-covered', 'Snowy Owl', 'Winter Clothing', 'Yule Log', 'Glitter', 'Glittering Lights', 'Midnight Mass', 'Snowmobile', "Season's Greetings", 'Freeze', 'Fleece', 'Stocking Stuffer', 'Hot Cocoa', 'Marshmallows', 'Tidings', 'Greetings Card', 'Sugar Plum Fairy', 'Snowscape', 'Crisp', 'Boughs of Holly', 'Turtleneck', 'Frost', 'Frozen Pond', 'Nativity Scene', 'Cozy', 'Nutcracker Suite', 'Sleigh Ride', 'Candy Wrapper', 'Snow Globe', 'Reindeer Games', 'Ski Resort', 'Glisten', 'Evergreen Forest', 'Tiding', 'Skiing', 'December', 'Hibernate', 'Sleighing', 'Chestnut Roasting', 'Yuletide Carols', 'Chestnuts', 'Cozy Sweater', 'Hat', 'Ice Sculpture', 'Fireplace', 'Snow Angels', 'Cinnamon', 'Cranberries', 'Snowplow', 'Foggy', 'Snowy Landscape', 'Silver Bells', 'Celebrate', 'Snowflake', 'Christmas Eve', 'Mittens', 'Caroler', 'Joviality', 'Ice Fishing', 'Boots', 'Blizzard', 'Shepherdess', 'Christmas Day', 'Twinkling Stars', 'Mistletoe', 'Cold', 'Frigid', 'Toboggan', 'Winter Blues', 'Winter Break', 'Gingerbread House', 'Icicle', 'Flannel', 'Winter Storm', 'Penguin', 'Polar Bear', 'Decorations', 'Seasonal', 'Winter Sleep', 'Festive', 'Wassail', 'Yuletide', 'Plum Pudding', 'Tidings of Joy', 'North Wind', 'Ice Skates', 'Muffler', 'Kwanzaa', 'Thermos', 'Icy', 'Snow Fort', 'Polar Vortex', 'Chimney Sweep', 'Yuletide Log', 'Winter Olympics', 'Parka', 'Glistening', 'Advent Calendar', 'Winter Solstice', 'Evergreen', 'Winter Carnival', 'Fog', 'Pinecone', 'Scarf', 'Ice', 'Festive Spirit', 'Frostbite', 'Hanukkah', 'Angelic', 'New Year', 'Ice Skating', 'Snowpants', 'Snowman', 'Nutcracker', 'Winter', 'Bauble', 'Toy Soldier', 'Nutmeg', 'Snowfall', 'Snowdrift', 'Snowstorm', 'Jolly Old Elf', 'Winter Coat', 'Winter Sports', "New Year's Eve", 'Sweater', 'Frozen', 'Jingle Bell Rock', 'Winterize', 'Blustery', 'Snowy', 'Christmas']