Compare commits

..

No commits in common. "900ddb6bb24b2c78f0171e18756b7de35acdb2e0" and "e24b32420df08bb6ecb0a00d51007d3a329cf2e5" have entirely different histories.

2 changed files with 2 additions and 14 deletions

View File

@ -1,11 +0,0 @@
//
// File.swift
//
//
// Created by Max Nuding on 05.12.21.
//
import Foundation
import Runner
Runner(target: Day05.self, day: "05").run()

View File

@ -1,12 +1,11 @@
// //
// File.swift // File.swift
// //
// //
// Created by Max Nuding on 05.12.21. // Created by Max Nuding on 05.12.21.
// //
import Foundation import Foundation
import Runner
struct Line: CustomStringConvertible { struct Line: CustomStringConvertible {
let from: Point let from: Point
@ -80,7 +79,7 @@ struct Field: CustomStringConvertible {
} }
} }
struct Day05: Runnable { struct Day05 {
let inputPath: String let inputPath: String
func run() { func run() {