This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Dijkstra's algorithm in Swift 3 | |
The idea is to create a more protocol oriented implementation. | |
Note: It could use some optimizations, if you wish to use in production. | |
*/ | |
import Foundation |