We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fdd98c commit 444b993Copy full SHA for 444b993
Rabin-Karp/Rabin-Karp.playground/Contents.swift
@@ -8,7 +8,7 @@ print("Hello, Swift 4!")
8
import UIKit
9
10
struct Constants {
11
- static let hashMultiplier = 69069
+ static let hashMultiplier = 69061
12
}
13
14
precedencegroup PowerPrecedence { higherThan: MultiplicationPrecedence }
@@ -30,8 +30,8 @@ extension Character {
30
// Find first position of pattern in the text using Rabin Karp algorithm
31
public func search(text: String, pattern: String) -> Int {
32
// convert to array of ints
33
- let patternArray = pattern.flatMap { $0.asInt }
34
- let textArray = text.flatMap { $0.asInt }
+ let patternArray = pattern.compactMap { $0.asInt }
+ let textArray = text.compactMap { $0.asInt }
35
36
if textArray.count < patternArray.count {
37
return -1
0 commit comments