You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 2022/06/README.md
+23
Original file line number
Diff line number
Diff line change
@@ -45,3 +45,26 @@ Here are the first positions of start-of-message markers for all of the above ex
45
45
- zcfzfwzzqfrljwzlrfnpqdbhtmscgvjw: first marker after character 26
46
46
47
47
**How many characters need to be processed before the first start-of-message marker is detected?**
48
+
49
+
## Other solutions
50
+
51
+
There's a neat trick here that lets you solve this problem without an inner loop or accumulating into a hashmap:
52
+
53
+
If you convert each character to a bitmask (i.e. 1 << (c - 'a')), you can do a single pass through the string, accumulating with xor and terminating when you've hit N set bits.
0 commit comments