Skip to content

Commit 61d32c4

Browse files
authoredDec 19, 2018
Merge pull request kodecocodes#835 from pakosaldanaort/Fix_Boyer-Moore-Horspool
Fix deprecated methods on Boyer-Moore-Horspool
2 parents da92362 + 091f17d commit 61d32c4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎Boyer-Moore-Horspool/BoyerMooreHorspool.playground/Contents.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ extension String {
1212
// Cache the length of the search pattern because we're going to
1313
// use it a few times and it's expensive to calculate.
1414
let patternLength = pattern.count
15-
guard patternLength > 0, patternLength <= count else { return nil }
15+
guard patternLength > 0, patternLength <= self.count else { return nil }
1616

1717
// Make the skip table. This table determines how far we skip ahead
1818
// when a character from the pattern is found.

‎Boyer-Moore-Horspool/BoyerMooreHorspool.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ extension String {
1010
// Cache the length of the search pattern because we're going to
1111
// use it a few times and it's expensive to calculate.
1212
let patternLength = pattern.count
13-
guard patternLength > 0, patternLength <= count else { return nil }
14-
13+
guard patternLength > 0, patternLength <= self.count else { return nil }
14+
1515
// Make the skip table. This table determines how far we skip ahead
1616
// when a character from the pattern is found.
1717
var skipTable = [Character: Int]()

0 commit comments

Comments
 (0)