Skip to content
Snippets Groups Projects
Unverified Commit 3dc55085 authored by Recolic Keghart's avatar Recolic Keghart
Browse files

working

parent b1b4684a
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,9 @@ e. Any binary string with even number of "1"s and even number of "0"s. ...@@ -27,7 +27,9 @@ e. Any binary string with even number of "1"s and even number of "0"s.
``` ```
a. r"^[^aeiou]*a[^aeiou]*e[^aeiou]*i[^aeiou]*o[^aeiou]*u[^aeiou]*$" a. r"^[^aeiou]*a[^aeiou]*e[^aeiou]*i[^aeiou]*o[^aeiou]*u[^aeiou]*$"
b. r"^a*b*c*d*e*f*$" b. r"^a*b*c*d*e*f*$"
c. r"" ^/\*("[^"]*")*\*/$ c. r"^\/\*((?![^\"]*\*\/)[^\"]*\"[^\"]*\")*(?!.*\*\/.*\*\/).*\*\/$"
d. r"^(00|11)*((01|10)(00|11)*(01|10)(00|11)*)*1(00|11)*((01|10)(00|11)*(01|10)(00|11)*)*$"
e. r"^1*(0+1)*0*$"
f. r"^1*0*1?0*$"
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment