···11+---
22+title: "Secret Entrance"
33+published: 2025-12-15
44+draft: false
55+---
66+77+88+99+# Part 1
1010+1111+We are given line seperated operations that happen on a 100 pin circular dial. The dial starts at 50 and we are to output, how many times the dial stops at 0!
1212+1313+An example-
1414+1515+> L68
1616+> L30
1717+> R48
1818+> L5
1919+> R60
2020+> L55
2121+> L1
2222+> L99
2323+> R14
2424+> L82
2525+2626+- Dial @ 50
2727+- L68 -> 82
2828+- L30 -> 52
2929+- R48 -> **0**!
3030+- L5 -> 95
3131+- R60 -> 55
3232+- L55 -> **0**!
3333+- L1 -> 99
3434+- L99 -> **0**!
3535+- R14 -> 14
3636+- L82 -> 32
3737+3838+ So, in total `3` times! `3` is our answer!
3939+
+10
src/content/aoc/2025/01.org
···11+#+title: Secret Entrance
22+#+OPTIONS: toc:nil
33+44+* Part 1
55+We are given line seperated operations that happen on a 100 pin circular dial. The dial starts at 50 and we are to output, how many times the dial stops at 0!
66+77+#+begin_src rust
88+#+end_src
99+1010+#+RESULTS: