Skip to content

Commit e0c6676

Browse files
committed
Updated MST (Unweighted) to Swift 4.2
1 parent af10fe9 commit e0c6676

File tree

2 files changed

+8
-5
lines changed
  • Minimum Spanning Tree (Unweighted)/MinimumSpanningTree.playground

2 files changed

+8
-5
lines changed

Minimum Spanning Tree (Unweighted)/MinimumSpanningTree.playground/Pages/Minimum spanning tree example.xcplaygroundpage/Contents.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
// last checked with Xcode 9.0b4
2-
#if swift(>=4.0)
3-
print("Hello, Swift 4!")
4-
#endif
5-
61
func breadthFirstSearchMinimumSpanningTree(_ graph: Graph, source: Node) -> Graph {
72
let minimumSpanningTree = graph.duplicate()
83

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)