diff --git a/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/Contents.swift b/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/Contents.swift
index e88a1b93d..5817cc41f 100644
--- a/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/Contents.swift
+++ b/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/Contents.swift
@@ -16,13 +16,13 @@ extension String {
func index(of pattern: String, usingHorspoolImprovement: Bool = false) -> Index? {
// Cache the length of the search pattern because we're going to
// use it a few times and it's expensive to calculate.
- let patternLength = pattern.characters.count
- guard patternLength > 0, patternLength <= characters.count else { return nil }
+ let patternLength = pattern.count
+ guard patternLength > 0, patternLength <= count else { return nil }
// Make the skip table. This table determines how far we skip ahead
// when a character from the pattern is found.
var skipTable = [Character: Int]()
- for (i, c) in pattern.characters.enumerated() {
+ for (i, c) in pattern.enumerated() {
skipTable[c] = patternLength - i - 1
}
diff --git a/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 000000000..18d981003
--- /dev/null
+++ b/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/timeline.xctimeline b/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/timeline.xctimeline
index 89bc76f90..2688d72c1 100644
--- a/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/timeline.xctimeline
+++ b/Boyer-Moore-Horspool/BoyerMooreHorspool.playground/timeline.xctimeline
@@ -3,17 +3,17 @@
version = "3.0">
diff --git a/Boyer-Moore-Horspool/BoyerMooreHorspool.swift b/Boyer-Moore-Horspool/BoyerMooreHorspool.swift
index af8aea9d9..dbd738740 100644
--- a/Boyer-Moore-Horspool/BoyerMooreHorspool.swift
+++ b/Boyer-Moore-Horspool/BoyerMooreHorspool.swift
@@ -9,13 +9,13 @@ extension String {
func index(of pattern: String, usingHorspoolImprovement: Bool = false) -> Index? {
// Cache the length of the search pattern because we're going to
// use it a few times and it's expensive to calculate.
- let patternLength = pattern.characters.count
- guard patternLength > 0, patternLength <= characters.count else { return nil }
+ let patternLength = pattern.count
+ guard patternLength > 0, patternLength <= count else { return nil }
// Make the skip table. This table determines how far we skip ahead
// when a character from the pattern is found.
var skipTable = [Character: Int]()
- for (i, c) in pattern.characters.enumerated() {
+ for (i, c) in pattern.enumerated() {
skipTable[c] = patternLength - i - 1
}