pyassistant

Palindrome List Check

Given a list of integers, return True if the list is a palindrome (reads the same forwards as it does backwards), and False otherwise.

Example:

Input:
[1, 2, 3, 2, 1]
Output:
True

Make sure you return your solution, don't print!

AI

Bot

Trying to solve my challenge? Ask if you must, or press the purple button so I can analyze your code.