We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08d5fc commit 01ba34cCopy full SHA for 01ba34c
Merge Sort/MergeSort.playground/Contents.swift
@@ -1,10 +1,5 @@
1
/* Top-down recursive version */
2
3
-// last checked with Xcode 9.0b4
4
-#if swift(>=4.0)
5
-print("Hello, Swift 4!")
6
-#endif
7
-
8
func mergeSort<T: Comparable>(_ array: [T]) -> [T] {
9
guard array.count > 1 else { return array }
10
let middleIndex = array.count / 2
Merge Sort/MergeSort.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!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