@@ -0,0 +1,7 @@
+package main
+
+import "strings"
+func checkOnesSegment(s string) bool {
+ return !strings.Contains(s, "01")
+}