File tree 2 files changed +3
-3
lines changed
BoyerMooreHorspool.playground
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ extension String {
12
12
// Cache the length of the search pattern because we're going to
13
13
// use it a few times and it's expensive to calculate.
14
14
let patternLength = pattern. count
15
- guard patternLength > 0 , patternLength <= count else { return nil }
15
+ guard patternLength > 0 , patternLength <= self . count else { return nil }
16
16
17
17
// Make the skip table. This table determines how far we skip ahead
18
18
// when a character from the pattern is found.
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ extension String {
10
10
// Cache the length of the search pattern because we're going to
11
11
// use it a few times and it's expensive to calculate.
12
12
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
+
15
15
// Make the skip table. This table determines how far we skip ahead
16
16
// when a character from the pattern is found.
17
17
var skipTable = [ Character: Int] ( )
You can’t perform that action at this time.
0 commit comments