Created
June 4, 2014 14:18
-
-
Save hirokazumiyaji/0389cb3c4fb70293ecdf to your computer and use it in GitHub Desktop.
swift sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var count = 0 | |
for scene in scenes { | |
if scene.hasPrefix("Act 1") { | |
count += 1 | |
} | |
} | |
count = scenes.filter({$0.hasPrefix("Act 1")}).count |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment