Skip to content

Commit 0dfd248

Browse files
committed
add other solutions for day 6
1 parent fa971cb commit 0dfd248

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

2022/06/README.md

+23
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,26 @@ Here are the first positions of start-of-message markers for all of the above ex
4545
- zcfzfwzzqfrljwzlrfnpqdbhtmscgvjw: first marker after character 26
4646

4747
**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.
54+
55+
The core looks like this:
56+
57+
```Rust
58+
let mut accum = 0u32;
59+
for (i, mask) in masks.iter().enumerate() {
60+
accum ^= mask;
61+
if i >= size {
62+
accum ^= masks[i - size];
63+
if accum.count_ones() as usize == size {
64+
return Ok(i + 1);
65+
}
66+
}
67+
}
68+
```
69+
70+
[source](https://www.reddit.com/r/adventofcode/comments/zdw0u6/comment/iz4l6xk/?utm_source=share&utm_medium=web2x&context=3)

0 commit comments

Comments
 (0)