|
42 | 42 | ## Array |
43 | 43 | | Title | Solution | Difficulty | Time | Space | |
44 | 44 | | ----- | -------- | ---------- | ---- | ----- | |
| 45 | +[Max Number of K-Sum Pairs](https://leetcode.com/problems/max-number-of-k-sum-pairs/)|[Swift](./Array/MaxNumberOfK-SumPairs.swift)| Medium| O(n)| O(n)| |
45 | 46 | [Check Array Formation Through Concatenation](https://leetcode.com/problems/check-array-formation-through-concatenation/)|[Swift](./Array/CheckArrayFormationThroughConcatenation.swift)| Easy| O(nlogn)| O(n)| |
46 | 47 | [Verify an Alien Dictionary](https://leetcode.com/problems/verifying-an-alien-dictionary/)|[Swift](Array/VerifyingAlienDictionary.swift)| Easy| O(n)| O(n)| |
47 | 48 | [Sort Array By Parity](https://leetcode.com/problems/sort-array-by-parity/)|[Swift](./Array/SortArrayByParity.swift)| Easy| O(n)| O(n)| |
|
225 | 226 | ## Dynamic programming |
226 | 227 | | Title | Solution | Difficulty | Time | Space | |
227 | 228 | | ----- | -------- | ---------- | ---- | ----- | |
| 229 | +[Count Sorted Vowel Strings](https://leetcode.com/problems/count-sorted-vowel-strings/) | [Swift](./DP/CountSortedVowelStrings.swift) | Medium| O(n)| O(n)| |
228 | 230 | [Minimum Operations to Reduce X to Zero](https://leetcode.com/problems/minimum-operations-to-reduce-x-to-zero/) | [Swift](./DP/MinimumOperationsToReduceXToZero.swift) | Medium| O(n)| O(n)| |
229 | 231 | [Boats to Save People](https://leetcode.com/problems/boats-to-save-people/) | [Swift](./DP/BoatsToSavePeople.swift) | Medium| O(nlogn)| O(n)| |
230 | 232 | [Nested List Weight Sum](https://leetcode.com/problems/nested-list-weight-sum/)| [Swift](./DP/NestedListWeightSum.swift)| Easy| O(n)| O(1)| |
|
548 | 550 | ## Problem Status |
549 | 551 | | Solution | Number | Title | Difficulty | |
550 | 552 | | -------- | ------ | ----- | ---------- | |
| 553 | +| [Swift](./Array/MaxNumberOfK-SumPairs.swift) | 1679 | [Max Number of K-Sum Pairs](https://leetcode.com/problems/max-number-of-k-sum-pairs/) | Medium | |
551 | 554 | | [Swift](./DP/MinimumOperationsToReduceXToZero.swift) | 1658 | [Minimum Operations to Reduce X to Zero](https://leetcode.com/problems/minimum-operations-to-reduce-x-to-zero/) | Medium | |
| 555 | +| [Swift](./DP/CountSortedVowelStrings.swift) | 1641 | [Count Sorted Vowel Strings](https://leetcode.com/problems/count-sorted-vowel-strings/) | Medium | |
552 | 556 | | [Swift](./Array/CheckArrayFormationThroughConcatenation.swift) | 1640 | [Check Array Formation Through Concatenation](https://leetcode.com/problems/check-array-formation-through-concatenation/) | Easy | |
553 | 557 | | [Swift](./LinkedList/PseudoPalindromicPathsInABinaryTree.swift) | 1457 | [Pseudo-Palindromic Paths in a Binary Tree](https://leetcode.com/problems/pseudo-palindromic-paths-in-a-binary-tree/) | Medium | |
554 | 558 | | [Swift](./BFS/JumpGameIV.swift) | 1345 | [Jump Game IV](https://leetcode.com/problems/jump-game-iv/) | Hard | |
|
0 commit comments