Compare commits
2 Commits
e24b32420d
...
900ddb6bb2
Author | SHA1 | Date | |
---|---|---|---|
900ddb6bb2 | |||
96cf4aff3b |
@ -1,11 +1,12 @@
|
|||||||
//
|
//
|
||||||
// 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
|
||||||
@ -79,7 +80,7 @@ struct Field: CustomStringConvertible {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct Day05 {
|
struct Day05: Runnable {
|
||||||
let inputPath: String
|
let inputPath: String
|
||||||
|
|
||||||
func run() {
|
func run() {
|
11
Sources/05/main.swift
Normal file
11
Sources/05/main.swift
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
//
|
||||||
|
// File.swift
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// Created by Max Nuding on 05.12.21.
|
||||||
|
//
|
||||||
|
|
||||||
|
import Foundation
|
||||||
|
import Runner
|
||||||
|
|
||||||
|
Runner(target: Day05.self, day: "05").run()
|
Loading…
Reference in New Issue
Block a user