Formatted

This commit is contained in:
2025-12-13 15:44:10 -05:00
parent d34cf3575c
commit 42f56993f1
3 changed files with 21 additions and 17 deletions

View File

@@ -4,7 +4,7 @@ defmodule AdventOfCode.Year2025.DialTest do
import AdventOfCode.Year2025.Dial
test "dial starts at 50" do
{ index, _ } = rotate([])
{index, _} = rotate([])
assert index == 50
end
@@ -15,7 +15,7 @@ defmodule AdventOfCode.Year2025.DialTest do
test "rotate left decrements index" do
{index, _} = rotate(["L1"])
assert index ==49
assert index == 49
end
test "increments zero crossings when landing on zero" do