would this work: ```for (number in input.toString(...
# announcements
t
would this work:
Copy code
for (number in input.toString().split("")) {
    
}
r
You'll get empty strings at the start and end, I'd recommend
input.map{ it.toString() }
e
for (char in input.toString())
should work without splitting
t
@ephemient oh yeah makes sense 👍 thanks