We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af10fe9 commit acb21c3Copy full SHA for acb21c3
Minimum Spanning Tree/MinimumSpanningTree.playground/Contents.swift
@@ -3,11 +3,6 @@
3
Kruskal's and Prim's algorithms.
4
*/
5
6
-// last checked with Xcode 9.0b4
7
-#if swift(>=4.0)
8
-print("Hello, Swift 4!")
9
-#endif
10
-
11
func minimumSpanningTreeKruskal<T>(graph: Graph<T>) -> (cost: Int, tree: Graph<T>) {
12
var cost: Int = 0
13
var tree = Graph<T>()
Minimum Spanning Tree/MinimumSpanningTree.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -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">
+<plist version="1.0">
+<dict>
+ <key>IDEDidComputeMac32BitWarning</key>
+ <true/>
+</dict>
+</plist>
0 commit comments