Skip to content

Commit 1e8e231

Browse files
committed
Updated Run-Length Encoding to Swift 4.2
1 parent ace62f8 commit 1e8e231

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Run-Length Encoding/RLE.playground/Contents.swift

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
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-
83
import Foundation
94

105
let originalString = "aaaaabbbcdeeeeeeef"
@@ -64,7 +59,7 @@ func testBufferWithoutSpans() -> Bool {
6459
// data ends up being longer.
6560
var bytes: [UInt8] = []
6661
for i in 0..<1024 {
67-
bytes.append(UInt8(i%256))
62+
bytes.append(UInt8(i % 256))
6863
}
6964
return encodeAndDecode(bytes)
7065
}

0 commit comments

Comments
 (0)