Skip to content

Commit 6dabe99

Browse files
authored
Merge pull request #575 from remlostime/Strassen-swift
[Swift 4] Update Strassen Matrix Multiplication
2 parents 3af111c + fe933ee commit 6dabe99

File tree

1 file changed

+5
-0
lines changed
  • Strassen Matrix Multiplication/StrassensMatrixMultiplication.playground

1 file changed

+5
-0
lines changed

Strassen Matrix Multiplication/StrassensMatrixMultiplication.playground/Contents.swift

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
//: Playground - noun: a place where people can play
22

3+
// last checked with Xcode 9.0b4
4+
#if swift(>=4.0)
5+
print("Hello, Swift 4!")
6+
#endif
7+
38
import Foundation
49

510
var A = Matrix(rows: 2, columns: 4, initialValue: 0)

0 commit comments

Comments
 (0)