Is it a palindrome list?

Report a typo

We have a list of words, and we must check if each of the words in this list is a palindrome. Remember: a palindrome is a word or other sequence of characters which reads the same backward as forward (we don't care about the letter case in this exercise).

Sample Input 1:

kayak deified rotator repaper

Sample Output 1:

true
Write a program in Kotlin
/* Do not change code below */
fun main() {
val list = readln().split(" ")
// write your code here
val res =


println(res)
}
___

Create a free account to access the full topic