Question
Implement the function described in Q1(a). Your implementation should broadly match your algorithm from Q1(b); failure to do so will cause a reduction in marks.
Implement the function described in Q1(a). Your implementation should broadly match your algorithm from Q1(b); failure to do so will cause a reduction in marks. You can use the tests below to help check if your code is working.\ NOTE that failing the tests is a clear indication you code is faulty, but passing the tests is NOT a guarantee it is correct. Your tutor may run additional tests. Q1(d)(i) (6 marks) Chapter 4 of the book provides the following algorithm for finding the index of the first occurrence of a given character in a given string, text: 1. for each index from 0 to |text| - 1: 1. if text[index] = character: 1. stop 2. let index be |text| In [ ]: #Write your answer here %run -i m269_util test_table = [ ['test 1','aeon',1], ['test 2','yippee',4], ['test 3','mytzlplk',8] ] test(your_function_name, test_table)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started