Has the spell been invoked?

Report a typo

A wizard has recited a list of words, but we know that only "abracadabra" casts the spell. Has it been spoken? Return true if the list contains the word "abracadabra" in upper, lower, or mixed case.

Sample Input 1:

mom dog ABRACADABRA

Sample Output 1:

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


println(res)
}
___

Create a free account to access the full topic