Skip to content

Commit f03f5ec

Browse files
committed
[Swift 4] Update Select Minimum Maximum
1 parent 1eb05ba commit f03f5ec

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Select Minimum Maximum/SelectMinimumMaximum.playground/Contents.swift

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// last checked with Xcode 9.0b4
2+
#if swift(>=4.0)
3+
print("Hello, Swift 4!")
4+
#endif
5+
16
// Compare each item to find minimum
27
func minimum<T: Comparable>(_ array: [T]) -> T? {
38
guard var minimum = array.first else {

0 commit comments

Comments
 (0)