summaryrefslogtreecommitdiff
path: root/comp/work/44/sheet
diff options
context:
space:
mode:
authorthing1 <thing1@seacrossedlovers.xyz>2025-02-06 12:09:43 +0000
committerthing1 <thing1@seacrossedlovers.xyz>2025-02-06 12:09:43 +0000
commit3af9b11229f79d3e6347a2e628772a729c644016 (patch)
tree03beec1fc9e2de5d79b196bc46fb5b9056f8b1c6 /comp/work/44/sheet
parent02653ab40d93fb7e6d07edb747fe0e07c5d60c74 (diff)
did some interesting work
Diffstat (limited to 'comp/work/44/sheet')
-rw-r--r--comp/work/44/sheet11
1 files changed, 11 insertions, 0 deletions
diff --git a/comp/work/44/sheet b/comp/work/44/sheet
new file mode 100644
index 0000000..5226997
--- /dev/null
+++ b/comp/work/44/sheet
@@ -0,0 +1,11 @@
+RE | req
+
+(1|0) | 1 or 0
+1+ | all 1's
+(1|0)+ | all binary strings
+(1|0)*1 | binary string ending with 1
+1(1|0)* | binary string starting with 1
+(1|0)*00 | binary string ending 00
+(0|1)*1(0|1)*1(0|1)*(0|1) | binary string with at least 3 1's, with the ones being between 4 binary strings that can contain anything and can be empty, exepct at the end, where it is a final 1, or 0, and nothing else
+111*((0|1)*|111)*(111)* | binary string with at least 3 consecutive 1's
+(0|1)*110(0|1)* | any binary string with 110 in the middle of it (or the start or end if the first terms occur 0 times)