Share a project you've worked on recently (or in the past) What do you think of the challenge and what it means to you ?
Follow the instructions below to answer questionnaire. Next, the following five questions will be used to ensure our members have the foundation necessary to join our team. Please create a free github (https://github.com/join) account if you don't already have one, publish your code that solves each of these to https://gist.github.com and share your answers via email to ernest@kamara.io or pdtpatrick@gmail.com. Once your answer is approved, you will receive an invite to join our team.
1. FIND THE LONGEST WORD
["hello", "world", "hi", "bye"]
2. RETURN ALL ODDS
[1, 2, 3, 4, 5, 7]
3. SORT DICTIONARY/MAP BASED ON KEY
{"key": "value", "ab": "hi there", "we": "say what"}
4. READING A FILE
read a file called helloworld.txt and return line #10
5. READ A CSV FILE
you have a csv file called helloworld.csv with the following data in it
hi,bye,there,3
go,there,hi,3
hi,bye,there,4
Create a dictionary/map where the first three columns are your key and the last is your value. Sum up all values where the keys are the same.
Happy coding!