I have a number string like below.
s = "1123433364433"
I'd like to get the result list of splited continuous same value like this. You can't change the location of the original each digit.
result = ["11", "2", "3", "4", "333", "6", "44", "33"]
What should be the easiest way to get this?