They can't really have things like ':' in the stri...
# advent-of-code
n
They can't really have things like ':' in the string without additional conditional constraints
e
I used
.split(":", limit = 2)
Copy code
>>> "a:b:c".split(":", limit = 2)
res0: kotlin.collections.List<kotlin.String> = [a, b:c]