I'm a newbie. I need help with Chuck Norris cipher package chucknorris fun main() { println("He...
r
I'm a newbie. I need help with Chuck Norris cipher package chucknorris fun main() { println("Hello World!") } I don't know what to do🙏
t
Dont know what it is, but here is a repo of someone who did it in kotlin: https://github.com/callej/Chuck-Norris-Cipher/blob/main/Main.kt
I see its an exercise now, well part of that is the puzzling i guess?
r
Thanks so much. I have checked the code but I couldn't make sense of it
I think what I need to know first is how to divide an encrypted message into the characters that it contains
g
It looks as too generic question, depends on what kind encyrpted message and what is character Let’s say, just as a guess, if you encrypted message is a string and every “character” represented by Koitlin Char, than to split it you can just do val chars: List<Char> = “encrypted message”..toList() If character is some more complex structure (like multiple bytes/Chars) you need too write own parser for it