Well maybe do some 8kyus and 7kyu regex. Then, use some sources(Stack Overflow or Geeks for Geeks are both fine). Also, look at different peoples solutions.
You write a regex pattern, like regex = "". Then, using re the author tests if your regex pattern validates the pattern or not. By the way, you don't define a function.
This comment is hidden because it contains spoiler information about the solution
Yes, you are missing the "Available since" note in Python docs on
comb
.Well maybe do some 8kyus and 7kyu regex. Then, use some sources(Stack Overflow or Geeks for Geeks are both fine). Also, look at different peoples solutions.
You write a regex pattern, like
regex = ""
. Then, usingre
the author tests if your regex pattern validates the pattern or not. By the way, you don't define a function.