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