Skip to content

Instantly share code, notes, and snippets.

View alex-vasenin's full-sized avatar
🎯
Looking for a new gig

Alexander Vasenin alex-vasenin

🎯
Looking for a new gig
View GitHub Profile
@alex-vasenin
alex-vasenin / TimeSavingAffair.swift
Last active June 25, 2018 16:36
A time saving affair in Swift (two cases timeouts)
import Foundation
func main() {
var input = [[Int]]()
for _ in 0..<3 { input.append(readInts()) }
for _ in 0..<input[2][0] { input.append(readInts()) }
let graph = RoadGraph(input: input)
//print(graph.description)
let result = graph.calcShortestPathLength()
print(result)