From 558533cd012b4fbb77cc6201608bda215186a0d0 Mon Sep 17 00:00:00 2001 From: wolves Date: Fri, 6 Mar 2026 14:52:38 +0800 Subject: [PATCH] routine --- 26/03/1784.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 26/03/1784.go diff --git a/26/03/1784.go b/26/03/1784.go new file mode 100644 index 0000000..2c93bf1 --- /dev/null +++ b/26/03/1784.go @@ -0,0 +1,7 @@ +package main + +import "strings" + +func checkOnesSegment(s string) bool { + return !strings.Contains(s, "01") +}