Skip to content

Tabonx/Advent-of-Code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code 2024 - Swift Solutions

Language

Solutions for Advent of Code 2024 puzzles implemented in Swift.

The solutions are written for fun without focusing on optimization or code readability.

This project uses the Swift Starter Template.

Running Solutions

  • Run latest day: swift run
  • Run specific day: swift run AdventOfCode <day>
  • Benchmark mode: swift run -c release AdventOfCode --benchmark <day>
  • Run all tests: swift test
  • Run specific test: swift test --filter <TestCase>/<FunctionName>