/swift_aoc

Advent of code using Swift

Primary LanguageSwift

Intro

This repository is an example of writing a library in Swift including testing.

The code solves the first day of advent of code 2015.

Uses Quick and Nimble to write tests and assertions.

How to run it?

swift test

Guidelines (Extremely important things to consider)

  • Tests should be included (preferable using Quick & Nimble)
  • Code should be very clear
  • It should run with swift test from the command line
  • Functional style is encouraged
  • Super extra bonus points for using SwiftCheck