Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Zachary Dunn
6,557 PointsChallenge task 1 of 1
Fill in the find_index method to return the index of a todo item in the @todo_items array given the name. The method should return the index of the item if the item is found and nil if it is not found
my code looks correct to me.
class TodoList
attr_reader :name, :todo_items
def initialize(name)
@name = name
@todo_items = []
end
def add_item(name)
todo_items.push(TodoItem.new(name))
end
@todo_items.each do |todo_item|
if todo_item.name == name
found = true
return todo_item
end
if found
break
else
return nil
end
end
1 Answer

David Moore
13,916 PointsHere is the code you're looking for:
def find_index(name)
index = 0
found = false
todo_items.each do |todo_items|
if todo_items.name == name
found = true
break
else
index += 1
end
end
if found
return index
else
return nil
end
end
Maciej Czuchnowski
36,440 PointsMaciej Czuchnowski
36,440 PointsZachary, I don't see the find_index method in your code.