Skip to content

Commit 444b993

Browse files
author
Bill Barbour
committed
Updated number to be prime; and Swift 4 update
1 parent 0fdd98c commit 444b993

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Rabin-Karp/Rabin-Karp.playground/Contents.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ print("Hello, Swift 4!")
88
import UIKit
99

1010
struct Constants {
11-
static let hashMultiplier = 69069
11+
static let hashMultiplier = 69061
1212
}
1313

1414
precedencegroup PowerPrecedence { higherThan: MultiplicationPrecedence }
@@ -30,8 +30,8 @@ extension Character {
3030
// Find first position of pattern in the text using Rabin Karp algorithm
3131
public func search(text: String, pattern: String) -> Int {
3232
// convert to array of ints
33-
let patternArray = pattern.flatMap { $0.asInt }
34-
let textArray = text.flatMap { $0.asInt }
33+
let patternArray = pattern.compactMap { $0.asInt }
34+
let textArray = text.compactMap { $0.asInt }
3535

3636
if textArray.count < patternArray.count {
3737
return -1

0 commit comments

Comments
 (0)