cs102 lab5


http://www.maths.nuigalway.ie/~gettrick/teach/cs102/labs/2020labs/l5.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.
© NUI, Galway