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!
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

ryanosten
PHP Development Techdegree Student 29,615 PointsLast challenge item not passing - reverse_evens
For the reverse_evens, I feel my code should return correct value and I tested in REPL. Here is function..
def reverse_evens(list): return list[-1::-2]
What am I missing?
2 Answers

Steven Parker
225,742 PointsWhether your slice will create reverse evens or reverse odds will be a matter of how many items are in the list. To consistently return reverse evens, you'll probably need to do one of these two things:
- compute the starting position based on the list size
- extract the even indexed items first, and then reverse them

ryanosten
PHP Development Techdegree Student 29,615 PointsI see. Thanks.

ryanosten
PHP Development Techdegree Student 29,615 Pointsextracted evens and then reversed. easy peasy. Thanks for the help!

Steven Parker
225,742 Pointsryanosten — Glad to help. You can mark a question solved by choosing a "best answer".
And happy coding!