Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Computer Science Introduction to Algorithms Algorithms in Code Linear Search in Code

Michelle Rosenstock
PLUS
Michelle Rosenstock
Courses Plus Student 3,256 Points

Keeping getting "target not found" Linear Search Practice

Hi,

I keep get the response "target not found" when I updated the verify function to include 6 as an argument. Please advise why this coding isn't working. Thank you.

def linear_search(list, target): """ Returns the index position of the target if found, else returns None """

for i in range(0,len(list)): if list[i]==target: return i return None

def verify(index): if index is not None: print("Target found at index: ", index) else: print("Target not found in list")

numbers=[1,2,3,4,5,6,7,8,9,10]

result=linear_search(numbers,12) verify(result) result=linear_search(numbers,6) verify(result)

1 Answer

Check your indenting, particularly the return None statement, and see if it matches the following:

def linear_search(list, target):
    for i in range(0,len(list)):
        if list[i]==target:
            return i
    return None

def verify(index):
    if index is not None:
        print("Target found at index: ", index)
    else:
        print("Target not found in list")

numbers=[1,2,3,4,5,6,7,8,9,10]

result=linear_search(numbers,12)
verify(result)
result=linear_search(numbers,6)
verify(result)