|
66 | 66 | 498B5C502C1062F700B2DC79 /* StringCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 498B5C4E2C1062F700B2DC79 /* StringCompression.swift */; };
|
67 | 67 | 498B5C532C107BC600B2DC79 /* FindCommonCharacters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 498B5C522C107BC600B2DC79 /* FindCommonCharacters.swift */; };
|
68 | 68 | 498B5C542C107BC600B2DC79 /* FindCommonCharacters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 498B5C522C107BC600B2DC79 /* FindCommonCharacters.swift */; };
|
| 69 | + 4992C5242C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C5232C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift */; }; |
| 70 | + 4992C5252C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C5232C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift */; }; |
| 71 | + 4992C5292C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C5282C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift */; }; |
| 72 | + 4992C52A2C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C5282C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift */; }; |
| 73 | + 4992C52D2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C52C2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift */; }; |
| 74 | + 4992C52E2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C52C2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift */; }; |
| 75 | + 4992C5312C170E9900E16FCF /* HeightChecker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C5302C170E9900E16FCF /* HeightChecker.swift */; }; |
| 76 | + 4992C5322C170E9900E16FCF /* HeightChecker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4992C5302C170E9900E16FCF /* HeightChecker.swift */; }; |
69 | 77 | 499763162BFF8181009D6EF5 /* BenchTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 495D40482BFC94DC00ECFC81 /* BenchTimer.swift */; };
|
70 | 78 | 499763172BFF8181009D6EF5 /* TreeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 495D404C2BFC960B00ECFC81 /* TreeNode.swift */; };
|
71 | 79 | 499763182BFF8181009D6EF5 /* Node.swift in Sources */ = {isa = PBXBuildFile; fileRef = 495D404E2BFC965F00ECFC81 /* Node.swift */; };
|
|
178 | 186 | 498B5C4A2C1061DE00B2DC79 /* IncreasingTripletSubsequence.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IncreasingTripletSubsequence.swift; sourceTree = "<group>"; };
|
179 | 187 | 498B5C4E2C1062F700B2DC79 /* StringCompression.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StringCompression.swift; sourceTree = "<group>"; };
|
180 | 188 | 498B5C522C107BC600B2DC79 /* FindCommonCharacters.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FindCommonCharacters.swift; sourceTree = "<group>"; };
|
| 189 | + 4992C5232C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MaximumNumberOfVowelsInSubstringOfGivenLength.swift; sourceTree = "<group>"; }; |
| 190 | + 4992C5282C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MaxConsecutiveOnesIII.swift; sourceTree = "<group>"; }; |
| 191 | + 4992C52C2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LongestSubarrayOf1sAfterDeletingOneElement.swift; sourceTree = "<group>"; }; |
| 192 | + 4992C5302C170E9900E16FCF /* HeightChecker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HeightChecker.swift; sourceTree = "<group>"; }; |
181 | 193 | 499762E92BFF8031009D6EF5 /* LeetCode75 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = LeetCode75; sourceTree = BUILT_PRODUCTS_DIR; };
|
182 | 194 | 499762EB2BFF8031009D6EF5 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = "<group>"; };
|
183 | 195 | 499762F42BFF809E009D6EF5 /* LeetCode75_UnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LeetCode75_UnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
272 | 284 | 49EC4CBB2C06082900D68CF9 /* 876. Middle of the Linked List */,
|
273 | 285 | 49EC4CC12C06096800D68CF9 /* 949. Largest Time for Given Digits */,
|
274 | 286 | 498B5C512C107BB500B2DC79 /* 1002. Find Common Characters */,
|
| 287 | + 4992C52F2C170E8B00E16FCF /* 1051. Height Checker */, |
275 | 288 | 49EC4CC32C06096800D68CF9 /* 1480. Running Sum of 1d Array */,
|
276 | 289 | );
|
277 | 290 | path = Easy;
|
|
510 | 523 | path = "1002. Find Common Characters";
|
511 | 524 | sourceTree = "<group>";
|
512 | 525 | };
|
| 526 | + 4992C5222C14AB7300E16FCF /* 1456. Maximum Number of Vowels in a Substring of Given Length */ = { |
| 527 | + isa = PBXGroup; |
| 528 | + children = ( |
| 529 | + 4992C5232C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift */, |
| 530 | + ); |
| 531 | + path = "1456. Maximum Number of Vowels in a Substring of Given Length"; |
| 532 | + sourceTree = "<group>"; |
| 533 | + }; |
| 534 | + 4992C5262C16FD9900E16FCF /* 1004. Max Consecutive Ones III */ = { |
| 535 | + isa = PBXGroup; |
| 536 | + children = ( |
| 537 | + 4992C5282C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift */, |
| 538 | + ); |
| 539 | + path = "1004. Max Consecutive Ones III"; |
| 540 | + sourceTree = "<group>"; |
| 541 | + }; |
| 542 | + 4992C52B2C16FF0000E16FCF /* 1493. Longest Subarray of 1's After Deleting One Element */ = { |
| 543 | + isa = PBXGroup; |
| 544 | + children = ( |
| 545 | + 4992C52C2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift */, |
| 546 | + ); |
| 547 | + path = "1493. Longest Subarray of 1's After Deleting One Element "; |
| 548 | + sourceTree = "<group>"; |
| 549 | + }; |
| 550 | + 4992C52F2C170E8B00E16FCF /* 1051. Height Checker */ = { |
| 551 | + isa = PBXGroup; |
| 552 | + children = ( |
| 553 | + 4992C5302C170E9900E16FCF /* HeightChecker.swift */, |
| 554 | + ); |
| 555 | + path = "1051. Height Checker"; |
| 556 | + sourceTree = "<group>"; |
| 557 | + }; |
513 | 558 | 499762EA2BFF8031009D6EF5 /* LeetCode75 */ = {
|
514 | 559 | isa = PBXGroup;
|
515 | 560 | children = (
|
|
565 | 610 | 49B703632C0F106C0005B3D4 /* 238. Product of Array Except Self */,
|
566 | 611 | 498B5C492C1061BB00B2DC79 /* 334. Increasing Triplet Subsequence */,
|
567 | 612 | 498B5C4D2C1062E800B2DC79 /* 443. String Compression */,
|
| 613 | + 4992C5262C16FD9900E16FCF /* 1004. Max Consecutive Ones III */, |
| 614 | + 4992C5222C14AB7300E16FCF /* 1456. Maximum Number of Vowels in a Substring of Given Length */, |
| 615 | + 4992C52B2C16FF0000E16FCF /* 1493. Longest Subarray of 1's After Deleting One Element */, |
568 | 616 | 49450F762C11828B0036A167 /* 1679. Max Number of K-Sum Pairs */,
|
569 | 617 | );
|
570 | 618 | path = Medium;
|
|
907 | 955 | 49450F802C11AE370036A167 /* LongTestCases.swift in Sources */,
|
908 | 956 | 49E202562C04E623005D75E9 /* NAryTreePreorderTraversal.swift in Sources */,
|
909 | 957 | 49EC4CC42C06096900D68CF9 /* LargestTimeForGivenDigits.swift in Sources */,
|
| 958 | + 4992C5312C170E9900E16FCF /* HeightChecker.swift in Sources */, |
910 | 959 | );
|
911 | 960 | runOnlyForDeploymentPostprocessing = 0;
|
912 | 961 | };
|
|
926 | 975 | 49E202592C04E623005D75E9 /* LongestPalindrome.swift in Sources */,
|
927 | 976 | 495D40FE2BFCBBBE00ECFC81 /* BenchTimer.swift in Sources */,
|
928 | 977 | 495511A02C12FCBB004BCD04 /* ReplaceWords.swift in Sources */,
|
| 978 | + 4992C5322C170E9900E16FCF /* HeightChecker.swift in Sources */, |
929 | 979 | 49450F812C11AE370036A167 /* LongTestCases.swift in Sources */,
|
930 | 980 | 495D40FF2BFCBBBE00ECFC81 /* TreeNode.swift in Sources */,
|
931 | 981 | 490BB3652C0F441B0026F70C /* MaximizeDistanceToClosestPerson.swift in Sources */,
|
|
961 | 1011 | 49EC4CF62C06115C00D68CF9 /* MergeStringsAlternately.swift in Sources */,
|
962 | 1012 | 49B703662C0F10830005B3D4 /* ProductOfArrayExceptSelf.swift in Sources */,
|
963 | 1013 | 498B5C4F2C1062F700B2DC79 /* StringCompression.swift in Sources */,
|
| 1014 | + 4992C52D2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift in Sources */, |
964 | 1015 | 4955119B2C12FC87004BCD04 /* TrieNode.swift in Sources */,
|
965 | 1016 | 49EC4CD62C060E0D00D68CF9 /* IsSubsequence.swift in Sources */,
|
966 | 1017 | 4973991A2C0E0DFC003031AA /* SingleNumber.swift in Sources */,
|
967 | 1018 | 498B5C4B2C1061DE00B2DC79 /* IncreasingTripletSubsequence.swift in Sources */,
|
968 | 1019 | 49B331292C09AE6600BC47D8 /* NthTribonacciNumber.swift in Sources */,
|
969 | 1020 | 499763192BFF8181009D6EF5 /* ListNode.swift in Sources */,
|
970 | 1021 | 49EC4CEE2C06102E00D68CF9 /* GreatestCommonDivisorOfStrings.swift in Sources */,
|
| 1022 | + 4992C5292C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift in Sources */, |
971 | 1023 | 49EC4CEC2C06102E00D68CF9 /* KidsWithTheGreatestNumberOfCandies.swift in Sources */,
|
972 | 1024 | 49DA51162C08B1D30062A064 /* GuessNumberHigherOrLower.swift in Sources */,
|
973 | 1025 | 49450F782C1182A70036A167 /* MaxNumberOfKSumPairs.swift in Sources */,
|
|
978 | 1030 | 49450F742C117FE90036A167 /* ContainerWithMostWater.swift in Sources */,
|
979 | 1031 | 490BD5822C0721AC003AE043 /* MaximumDepthOfBinaryTree.swift in Sources */,
|
980 | 1032 | 49B703612C0EFAAF0005B3D4 /* ReverseWordsInString.swift in Sources */,
|
| 1033 | + 4992C5242C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift in Sources */, |
981 | 1034 | 49EC4CE22C060F1F00D68CF9 /* MaximumAverageSubarrayI.swift in Sources */,
|
982 | 1035 | );
|
983 | 1036 | runOnlyForDeploymentPostprocessing = 0;
|
|
1002 | 1055 | 49EC4CFB2C06115C00D68CF9 /* FindTheDifferenceOfTwoArrays.swift in Sources */,
|
1003 | 1056 | 4973991B2C0E0DFC003031AA /* SingleNumber.swift in Sources */,
|
1004 | 1057 | 490119312C087DD0009ADEC2 /* SearchInBinarySearchTree.swift in Sources */,
|
| 1058 | + 4992C52A2C16FDAC00E16FCF /* MaxConsecutiveOnesIII.swift in Sources */, |
1005 | 1059 | 4997631D2BFF8181009D6EF5 /* ListNode.swift in Sources */,
|
1006 | 1060 | 49450F832C11AE370036A167 /* LongTestCases.swift in Sources */,
|
1007 | 1061 | 49EC4CF92C06115C00D68CF9 /* FindTheHighestAltitude.swift in Sources */,
|
1008 | 1062 | 4955119C2C12FC87004BCD04 /* TrieNode.swift in Sources */,
|
1009 | 1063 | 49EC4CCD2C060CAA00D68CF9 /* ReverseLinkedList.swift in Sources */,
|
1010 | 1064 | 4912C7AE2C09CBBA00DEB016 /* MinCostClimbingStairs.swift in Sources */,
|
| 1065 | + 4992C52E2C16FF2300E16FCF /* LongestSubarrayOf1sAfterDeletingOneElement.swift in Sources */, |
1011 | 1066 | 490BD5832C0721AC003AE043 /* MaximumDepthOfBinaryTree.swift in Sources */,
|
1012 | 1067 | 490BD57F2C071DB7003AE043 /* NumberOfRecentCalls.swift in Sources */,
|
1013 | 1068 | 49DA51172C08B1D30062A064 /* GuessNumberHigherOrLower.swift in Sources */,
|
1014 | 1069 | 49B3312A2C09AE6600BC47D8 /* NthTribonacciNumber.swift in Sources */,
|
1015 | 1070 | 49450F792C1182A70036A167 /* MaxNumberOfKSumPairs.swift in Sources */,
|
1016 | 1071 | 497399172C0DBA1A003031AA /* CountingBits.swift in Sources */,
|
1017 | 1072 | 49EC4CF72C06115C00D68CF9 /* MergeStringsAlternately.swift in Sources */,
|
| 1073 | + 4992C5252C14AB8900E16FCF /* MaximumNumberOfVowelsInSubstringOfGivenLength.swift in Sources */, |
1018 | 1074 | 498B5C4C2C1061DE00B2DC79 /* IncreasingTripletSubsequence.swift in Sources */,
|
1019 | 1075 | 49450F752C117FE90036A167 /* ContainerWithMostWater.swift in Sources */,
|
1020 | 1076 | 498B5C502C1062F700B2DC79 /* StringCompression.swift in Sources */,
|
|
0 commit comments