about | help | code help+videos | done | prefs |
Write a function called search that takes as parameters a list and a string and returns True if the string is in the list and False otherwise. Your function must be _recursive_. recSearch(['Tom', 'Fred', 'Jane', 'Harry'], 'tom') → False recSearch(['Tom', 'Fred', 'Jane', 'Harry'], 'Tom') → True recSearch(['Tom', 'Fred', 'Jane', 'Harry'], 'Harry') → True ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 150
Copyright Nick Parlante 2017 - privacy