Solutions for regex.alf.nu (easy mode)
-
Warmup (207)
foo
-
Anchors (208)
k$
-
Ranges (202)
^[a-f]*$
-
Backrefs (201)
(...).*\1
-
Abba (165)
^(a[cem]|bar|ca|di|ef|go|[fnvpr]|su|tr?a|unv)
-
A man, a plan (177)
^(.)[^p].*\1$
-
Prime (282)
^(?!((xx+)\2+|x)$)
-
Four (199)
(.)(.\1){3}
-
Order (191)
^[a-m][c-o].*[^ed]$
-
Triples (587)
90.5|24|5[45]|191|9.7|177|00($|[369]|1[25])
-
Glob (386)
rr|^(p|do|[bclmwr][^ab]|\*[ifptv])
-
Balance (446)
^(<(<(<(<(<(<.*>)*>)*>)*>)*>)*>)*$
-
Powers (93)
^(?!(x(xx)+)\1*$)
-
Long count (219)
^0+ 0+1 .*0011 0100 0101 0110 01+ 10+ 1001 1010 101
-
Alphabetical (289)
e a?e|rt r|nt st|et te|st s|s ren|ee ta|a sea|r tea
-
Powers 2 (88)
^(?!(x(xxx)+|xx|)\1*$)
Score 3940