I am new in Kotlin and I want to perform XOR operation between Strings.
I know that I can perform like Java by converting string to char array and perform XOR on each character
But is there any function available in Kotlin by which I can do it easily.
Like I have Three String Y1, Y2 and Y3
I want to perform XOR operation between them like
var result = Y1 XOR Y2 XOR Y3
I am not getting how can I achive with Kotlin, can anyone help me, thanks in advance