Skip to content

Commit

Permalink
Day 6: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
horothesun committed Mar 29, 2024
1 parent e0b1b15 commit c3daea0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/scala/Day6.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import cats.implicits.*
import scala.math.Ordering.Implicits.infixOrderingOps
import scala.math.Numeric.Implicits.infixNumericOps
import RaceOutcome.*

case class Time(millis: Long):
def inc: Time = Time(millis + 1)
Expand All @@ -21,8 +22,6 @@ enum RaceOutcome:
case Win
case Loss(travelled: Distance)

import RaceOutcome.*

enum Bounds:
case Within, Outside

Expand Down

0 comments on commit c3daea0

Please sign in to comment.