Skip to content

Commit b26a44c

Browse files
committedJul 31, 2017
Update Run-Length Encoding to Swift 4
Updated to Swift 4 and Xcode 9.0b4. No changes necessary.
1 parent 4c340ab commit b26a44c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed
 

‎Run-Length Encoding/RLE.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
let originalString = "aaaaabbbcdeeeeeeef"

‎Run-Length Encoding/RLE.playground/timeline.xctimeline

-6
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.