We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace62f8 commit 1e8e231Copy full SHA for 1e8e231
Run-Length Encoding/RLE.playground/Contents.swift
@@ -1,10 +1,5 @@
1
//: Playground - noun: a place where people can play
2
3
-// last checked with Xcode 9.0b4
4
-#if swift(>=4.0)
5
-print("Hello, Swift 4!")
6
-#endif
7
-
8
import Foundation
9
10
let originalString = "aaaaabbbcdeeeeeeef"
@@ -64,7 +59,7 @@ func testBufferWithoutSpans() -> Bool {
64
59
// data ends up being longer.
65
60
var bytes: [UInt8] = []
66
61
for i in 0..<1024 {
67
- bytes.append(UInt8(i%256))
62
+ bytes.append(UInt8(i % 256))
68
63
}
69
return encodeAndDecode(bytes)
70
0 commit comments