Python program to check if given array is palindrome.
Sample Output:
IN: wasitacaroracatisaw hello OUT: true false
Code:
# ? 2017 TheFlyingKeyboard and released under MIT License # theflyingkeyboard.net def isPalindrome(arr): for i in range(0, int(len(arr) / 2)): if arr[i] != arr[len(arr) - 1 - i]: return False return True arrayToCheck = [1, 2, 3, 4, 2, 1] print(isPalindrome(arrayToCheck))
Python Check If Array Is Palindrome