Write a program to check whether the letter exists in the given list or not?
In Python.
Answers
Answered by
2
Answer:
In Naive method, one easily uses a loop that iterates through all the elements to check the existence of the target element. This is the simplest way to check the existence of the element in the list.
Similar questions