strings
Write a function solution(s) that returns True if s is a palindrome (reads the same forwards and backwards), and False otherwise. Ignore case.
Example
solution("racecar") → True
solution("hello") → False
solution("Madam") → True
solution.py
14px
📊 Test Results
Run your code to see test results here.