SwiftLCS
SwiftLCS copied to clipboard
Swift implementation of the longest common subsequence (LCS) algorithm.
Results
1
SwiftLCS issues
Sort by
recently updated
recently updated
newest added
``` let first = [0,1,1,2,3] let second = [0,1,2,3] let diff = first.diff(second) print("commonIndexes: \(diff.commonIndexes)") ``` result in commonIndexes: [0, 1, 2, 3, 4] expect: [0, 1, 3, 4] or...