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

noApples #37

Closed alexanderGGreenberg closed 6 years ago

alexanderGGreenberg commented 6 years ago

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

you have a vendetta against Apple. Return the inputted list, with every element that contains the substring 'apple' removed. ex: ['apple', 'Apple', 'I<3apple', 'banana', 'Microsoft'] return: ['Apple', 'banana', 'Microsoft']

kgioioso commented 6 years ago

I got it!