Leetcode_Swift icon indicating copy to clipboard operation
Leetcode_Swift copied to clipboard

Learning Swift

Results 1 Leetcode_Swift issues
Sort by recently updated
recently updated
newest added

NEVERMIND! fails on [-1,-1,-1] Would filtering the sorted array like this ``` var lastVal: Int? let sortedNums = nums.sorted().filter { (val) in if lastVal == nil { lastVal = val...