OpenSourceCornell / Spring_2018_WICC_OSC

The Git Workshop for the Spring 2018 WICC and Open Source Cornell Introduction to Open Source event.
1 stars 21 forks source link

alternatingLists #9

Open alexanderGGreenberg opened 6 years ago

joelahoover commented 6 years ago

Implement the funciton in src/alternatingLists.py with the following specification:

return the combination of the two lists such that their elements alternate unless one list runs out of elements ex: ['a','b','c','d'], ['1','2'] return: ['a','1','b','2','c','d']

ammar0211 commented 6 years ago

I'm on it.