cs102 lab4


https://maths.nuigalway.ie/~gettrick/teach/cs102/2024/labs/l4.html



Write a program in PYTHON that carries out linear (sequential) search of a list L for an element x. Your program must use a recursive function. If x is not in the list, return "not found", otherwise, return the position of (the first occurence of) x.
The list L and x should be read in from the user - and be sure to test your program on many examples.
© University of Galway