|
9 | 9 | /* Begin PBXBuildFile section */ |
10 | 10 | 1F21EEE72F54613100E0274E /* MakeArithmeticProgression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F21EEE62F54612300E0274E /* MakeArithmeticProgression.swift */; }; |
11 | 11 | 1F21EEEB2F56CA9700E0274E /* ReversePairs.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F21EEEA2F56CA9300E0274E /* ReversePairs.swift */; }; |
| 12 | + 1F21EEED2F56CD3000E0274E /* NextPermutation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F21EEEC2F56CD2A00E0274E /* NextPermutation.swift */; }; |
| 13 | + 1F21EEF12F56F53D00E0274E /* MergeInPlace.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F21EEF02F56F53800E0274E /* MergeInPlace.swift */; }; |
| 14 | + 1F21EEF32F56F54800E0274E /* MajorityElement2.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F21EEF22F56F54200E0274E /* MajorityElement2.swift */; }; |
| 15 | + 1F21EEF62F5F45A200E0274E /* AddDigits.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F21EEF52F5F459F00E0274E /* AddDigits.swift */; }; |
12 | 16 | 1F7037522F3E5618002CFFE1 /* Algorithms in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7037512F3E5618002CFFE1 /* Algorithms */; }; |
13 | 17 | 1F7037552F3E5642002CFFE1 /* BasicContainers in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7037542F3E5642002CFFE1 /* BasicContainers */; }; |
14 | 18 | 1F7037572F3E5642002CFFE1 /* BitCollections in Frameworks */ = {isa = PBXBuildFile; productRef = 1F7037562F3E5642002CFFE1 /* BitCollections */; }; |
|
336 | 340 | /* Begin PBXFileReference section */ |
337 | 341 | 1F21EEE62F54612300E0274E /* MakeArithmeticProgression.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MakeArithmeticProgression.swift; sourceTree = "<group>"; }; |
338 | 342 | 1F21EEEA2F56CA9300E0274E /* ReversePairs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReversePairs.swift; sourceTree = "<group>"; }; |
| 343 | + 1F21EEEC2F56CD2A00E0274E /* NextPermutation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextPermutation.swift; sourceTree = "<group>"; }; |
| 344 | + 1F21EEF02F56F53800E0274E /* MergeInPlace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MergeInPlace.swift; sourceTree = "<group>"; }; |
| 345 | + 1F21EEF22F56F54200E0274E /* MajorityElement2.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MajorityElement2.swift; sourceTree = "<group>"; }; |
| 346 | + 1F21EEF52F5F459F00E0274E /* AddDigits.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddDigits.swift; sourceTree = "<group>"; }; |
339 | 347 | 1F85E42D2F500D060097933E /* RecursiveBubbleSort.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecursiveBubbleSort.swift; sourceTree = "<group>"; }; |
340 | 348 | 1F85E4302F500D210097933E /* RecusriveInsertionSort.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecusriveInsertionSort.swift; sourceTree = "<group>"; }; |
341 | 349 | 1F85E4352F5062420097933E /* SortedRotated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SortedRotated.swift; sourceTree = "<group>"; }; |
|
621 | 629 | 1F21EEE92F56CA8D00E0274E /* Next Permutation */ = { |
622 | 630 | isa = PBXGroup; |
623 | 631 | children = ( |
| 632 | + 1F21EEEC2F56CD2A00E0274E /* NextPermutation.swift */, |
624 | 633 | ); |
625 | 634 | path = "Next Permutation"; |
626 | 635 | sourceTree = "<group>"; |
627 | 636 | }; |
| 637 | + 1F21EEEE2F56F51C00E0274E /* Merge In Place */ = { |
| 638 | + isa = PBXGroup; |
| 639 | + children = ( |
| 640 | + 1F21EEF02F56F53800E0274E /* MergeInPlace.swift */, |
| 641 | + ); |
| 642 | + path = "Merge In Place"; |
| 643 | + sourceTree = "<group>"; |
| 644 | + }; |
| 645 | + 1F21EEEF2F56F53200E0274E /* Majority Element 2 */ = { |
| 646 | + isa = PBXGroup; |
| 647 | + children = ( |
| 648 | + 1F21EEF22F56F54200E0274E /* MajorityElement2.swift */, |
| 649 | + ); |
| 650 | + path = "Majority Element 2"; |
| 651 | + sourceTree = "<group>"; |
| 652 | + }; |
| 653 | + 1F21EEF42F5F459A00E0274E /* Add Digits */ = { |
| 654 | + isa = PBXGroup; |
| 655 | + children = ( |
| 656 | + 1F21EEF52F5F459F00E0274E /* AddDigits.swift */, |
| 657 | + ); |
| 658 | + path = "Add Digits"; |
| 659 | + sourceTree = "<group>"; |
| 660 | + }; |
628 | 661 | 1F85E42C2F500D010097933E /* Recursive Bubble Sort */ = { |
629 | 662 | isa = PBXGroup; |
630 | 663 | children = ( |
|
1272 | 1305 | 6A88CEE526C056A400A3746B /* LeetCode */ = { |
1273 | 1306 | isa = PBXGroup; |
1274 | 1307 | children = ( |
| 1308 | + 1F21EEF42F5F459A00E0274E /* Add Digits */, |
1275 | 1309 | 1F85E4372F52E2EF0097933E /* Set Zeros Matrix */, |
1276 | 1310 | 1F85E4342F50623E0097933E /* Sorted and Rotated Array */, |
1277 | 1311 | 1F85E42C2F500D010097933E /* Recursive Bubble Sort */, |
|
1380 | 1414 | 1F21EEE52F54611E00E0274E /* Can Make Arithmetic Progression */, |
1381 | 1415 | 1F21EEE82F56CA7100E0274E /* Reverse Pairs */, |
1382 | 1416 | 1F21EEE92F56CA8D00E0274E /* Next Permutation */, |
| 1417 | + 1F21EEEE2F56F51C00E0274E /* Merge In Place */, |
| 1418 | + 1F21EEEF2F56F53200E0274E /* Majority Element 2 */, |
1383 | 1419 | ); |
1384 | 1420 | path = LeetCode; |
1385 | 1421 | sourceTree = "<group>"; |
|
2894 | 2930 | 6A651A222907054E000731BB /* ReverseLinkedLists.swift in Sources */, |
2895 | 2931 | 6AF578A126A2E7A7007B37CA /* MinimumWaitingTime.swift in Sources */, |
2896 | 2932 | 6AF5793126A9E0D3007B37CA /* LinkedList.swift in Sources */, |
| 2933 | + 1F21EEF32F56F54800E0274E /* MajorityElement2.swift in Sources */, |
2897 | 2934 | 6AF5789E26A2E74D007B37CA /* DepthFirstSearch.swift in Sources */, |
2898 | 2935 | 6A651A552907881B000731BB /* LongestCommonPrefix.swift in Sources */, |
2899 | 2936 | 6A4364C927FC655400F09D92 /* TopKFrequentElements.swift in Sources */, |
|
2939 | 2976 | 6A651A49290785FF000731BB /* ReverseInteger.swift in Sources */, |
2940 | 2977 | 6AAC7BED2803543E00ADB33F /* LargestIntergerByParity.swift in Sources */, |
2941 | 2978 | 6A38C4A92A783E730065B0F5 /* RandomizedSet.swift in Sources */, |
| 2979 | + 1F21EEED2F56CD3000E0274E /* NextPermutation.swift in Sources */, |
2942 | 2980 | 6AF578EF26A3EDCC007B37CA /* ArrayOfProducts.swift in Sources */, |
2943 | 2981 | 6A38C4AC2A7845340065B0F5 /* MergeStrings.swift in Sources */, |
2944 | 2982 | 6AF5788C26A2E6C0007B37CA /* SortedSquaredArray.swift in Sources */, |
|
2977 | 3015 | 6A4364B127F6F6EC00F09D92 /* SpiralMatrix.swift in Sources */, |
2978 | 3016 | 6A34F27928891CD10076570B /* MinNumberOfJumps.swift in Sources */, |
2979 | 3017 | 6AF5788926A2E6A4007B37CA /* ValidateSubsequence.swift in Sources */, |
| 3018 | + 1F21EEF12F56F53D00E0274E /* MergeInPlace.swift in Sources */, |
2980 | 3019 | 6A4364BD27FA242600F09D92 /* FindPlayers.swift in Sources */, |
2981 | 3020 | 6A912457270646FB00D50C17 /* WordPattern.swift in Sources */, |
2982 | 3021 | 6AC63CA42B88F2CF0050F3E8 /* KthLargestElement.swift in Sources */, |
|
2989 | 3028 | 6AF5788F26A2E6D7007B37CA /* TournamentWinner.swift in Sources */, |
2990 | 3029 | 6A88CEDF26BFD73500A3746B /* SearchInSortedMatrix.swift in Sources */, |
2991 | 3030 | 6AF5792126A860E8007B37CA /* FirstDuplicateValue.swift in Sources */, |
| 3031 | + 1F21EEF62F5F45A200E0274E /* AddDigits.swift in Sources */, |
2992 | 3032 | 6A651A3A290710AC000731BB /* ArrayRotation.swift in Sources */, |
2993 | 3033 | 6AF5793A26A9E332007B37CA /* TypeAliases.swift in Sources */, |
2994 | 3034 | 6AC63CAD2B8A64E80050F3E8 /* FindAllPeopleWithSecrets.swift in Sources */, |
|
0 commit comments