├── 0001-two-sum ├── 0001-two-sum.cpp └── README.md ├── 0011-container-with-most-water ├── 0011-container-with-most-water.cpp └── README.md ├── 0017-letter-combinations-of-a-phone-number ├── 0017-letter-combinations-of-a-phone-number.cpp └── README.md ├── 0029-divide-two-integers ├── 0029-divide-two-integers.cpp └── README.md ├── 0034-find-first-and-last-position-of-element-in-sorted-array ├── 0034-find-first-and-last-position-of-element-in-sorted-array.cpp └── README.md ├── 0036-valid-sudoku ├── 0036-valid-sudoku.cpp └── README.md ├── 0037-sudoku-solver ├── 0037-sudoku-solver.cpp └── README.md ├── 0039-combination-sum ├── 0039-combination-sum.cpp └── README.md ├── 0040-combination-sum-ii ├── 0040-combination-sum-ii.cpp └── README.md ├── 0044-wildcard-matching ├── 0044-wildcard-matching.cpp └── README.md ├── 0046-permutations ├── 0046-permutations.cpp └── README.md ├── 0047-permutations-ii ├── 0047-permutations-ii.cpp └── README.md ├── 0053-maximum-subarray ├── 0053-maximum-subarray.cpp └── README.md ├── 0055-jump-game ├── 0055-jump-game.cpp └── README.md ├── 0062-unique-paths ├── 0062-unique-paths.cpp └── README.md ├── 0063-unique-paths-ii ├── 0063-unique-paths-ii.cpp └── README.md ├── 0064-minimum-path-sum ├── 0064-minimum-path-sum.cpp └── README.md ├── 0070-climbing-stairs ├── 0070-climbing-stairs.cpp ├── 0070-climbing-stairs.java └── README.md ├── 0072-edit-distance ├── 0072-edit-distance.cpp └── README.md ├── 0075-sort-colors ├── 0075-sort-colors.cpp └── README.md ├── 0077-combinations ├── 0077-combinations.cpp └── README.md ├── 0078-subsets ├── 0078-subsets.cpp └── README.md ├── 0079-word-search ├── 0079-word-search.cpp └── README.md ├── 0094-binary-tree-inorder-traversal ├── 0094-binary-tree-inorder-traversal.cpp └── README.md ├── 0098-validate-binary-search-tree ├── 0098-validate-binary-search-tree.cpp └── README.md ├── 0099-recover-binary-search-tree ├── 0099-recover-binary-search-tree.cpp └── README.md ├── 0100-same-tree ├── 0100-same-tree.cpp └── README.md ├── 0101-symmetric-tree ├── 0101-symmetric-tree.cpp └── README.md ├── 0102-binary-tree-level-order-traversal ├── 0102-binary-tree-level-order-traversal.cpp └── README.md ├── 0103-binary-tree-zigzag-level-order-traversal ├── 0103-binary-tree-zigzag-level-order-traversal.cpp └── README.md ├── 0104-maximum-depth-of-binary-tree ├── 0104-maximum-depth-of-binary-tree.cpp └── README.md ├── 0105-construct-binary-tree-from-preorder-and-inorder-traversal ├── 0105-construct-binary-tree-from-preorder-and-inorder-traversal.cpp └── README.md ├── 0106-construct-binary-tree-from-inorder-and-postorder-traversal ├── 0106-construct-binary-tree-from-inorder-and-postorder-traversal.cpp └── README.md ├── 0110-balanced-binary-tree ├── 0110-balanced-binary-tree.cpp └── README.md ├── 0114-flatten-binary-tree-to-linked-list ├── 0114-flatten-binary-tree-to-linked-list.cpp └── README.md ├── 0115-distinct-subsequences ├── 0115-distinct-subsequences.cpp └── README.md ├── 0118-pascals-triangle ├── 0118-pascals-triangle.cpp └── README.md ├── 0120-triangle ├── 0120-triangle.cpp └── README.md ├── 0121-best-time-to-buy-and-sell-stock ├── 0121-best-time-to-buy-and-sell-stock.cpp └── README.md ├── 0122-best-time-to-buy-and-sell-stock-ii ├── 0122-best-time-to-buy-and-sell-stock-ii.cpp └── README.md ├── 0123-best-time-to-buy-and-sell-stock-iii ├── 0123-best-time-to-buy-and-sell-stock-iii.cpp └── README.md ├── 0124-binary-tree-maximum-path-sum ├── 0124-binary-tree-maximum-path-sum.cpp └── README.md ├── 0127-word-ladder ├── 0127-word-ladder.cpp └── README.md ├── 0130-surrounded-regions ├── 0130-surrounded-regions.cpp └── README.md ├── 0131-palindrome-partitioning ├── 0131-palindrome-partitioning.cpp └── README.md ├── 0132-palindrome-partitioning-ii ├── 0132-palindrome-partitioning-ii.cpp └── README.md ├── 0135-candy ├── 0135-candy.cpp └── README.md ├── 0136-single-number ├── 0136-single-number.cpp ├── 0136-single-number.java └── README.md ├── 0137-single-number-ii ├── 0137-single-number-ii.cpp └── README.md ├── 0144-binary-tree-preorder-traversal ├── 0144-binary-tree-preorder-traversal.cpp └── README.md ├── 0145-binary-tree-postorder-traversal ├── 0145-binary-tree-postorder-traversal.cpp └── README.md ├── 0151-reverse-words-in-a-string ├── 0151-reverse-words-in-a-string.cpp └── README.md ├── 0165-compare-version-numbers ├── 0165-compare-version-numbers.cpp ├── 0165-compare-version-numbers.java └── README.md ├── 0166-fraction-to-recurring-decimal ├── 0166-fraction-to-recurring-decimal.cpp └── README.md ├── 0167-two-sum-ii-input-array-is-sorted ├── 0167-two-sum-ii-input-array-is-sorted.cpp └── README.md ├── 0173-binary-search-tree-iterator ├── 0173-binary-search-tree-iterator.cpp └── README.md ├── 0175-combine-two-tables ├── 0175-combine-two-tables.sql └── README.md ├── 0183-customers-who-never-order ├── 0183-customers-who-never-order.sql └── README.md ├── 0188-best-time-to-buy-and-sell-stock-iv ├── 0188-best-time-to-buy-and-sell-stock-iv.cpp └── README.md ├── 0198-house-robber ├── 0198-house-robber.cpp └── README.md ├── 0199-binary-tree-right-side-view ├── 0199-binary-tree-right-side-view.cpp └── README.md ├── 0200-number-of-islands ├── 0200-number-of-islands.cpp └── README.md ├── 0204-count-primes ├── 0204-count-primes.cpp └── README.md ├── 0205-isomorphic-strings ├── 0205-isomorphic-strings.cpp └── README.md ├── 0207-course-schedule ├── 0207-course-schedule.cpp └── README.md ├── 0208-implement-trie-prefix-tree ├── 0208-implement-trie-prefix-tree.cpp └── README.md ├── 0210-course-schedule-ii ├── 0210-course-schedule-ii.cpp └── README.md ├── 0213-house-robber-ii ├── 0213-house-robber-ii.cpp └── README.md ├── 0215-kth-largest-element-in-an-array ├── 0215-kth-largest-element-in-an-array.cpp └── README.md ├── 0216-combination-sum-iii ├── 0216-combination-sum-iii.cpp └── README.md ├── 0217-contains-duplicate ├── 0217-contains-duplicate.cpp └── README.md ├── 0222-count-complete-tree-nodes ├── 0222-count-complete-tree-nodes.cpp └── README.md ├── 0230-kth-smallest-element-in-a-bst ├── 0230-kth-smallest-element-in-a-bst.cpp └── README.md ├── 0231-power-of-two ├── 0231-power-of-two.cpp └── README.md ├── 0235-lowest-common-ancestor-of-a-binary-search-tree ├── 0235-lowest-common-ancestor-of-a-binary-search-tree.cpp └── README.md ├── 0236-lowest-common-ancestor-of-a-binary-tree ├── 0236-lowest-common-ancestor-of-a-binary-tree.cpp └── README.md ├── 0238-product-of-array-except-self ├── 0238-product-of-array-except-self.cpp └── README.md ├── 0260-single-number-iii └── README.md ├── 0297-serialize-and-deserialize-binary-tree ├── 0297-serialize-and-deserialize-binary-tree.cpp └── README.md ├── 0300-longest-increasing-subsequence ├── 0300-longest-increasing-subsequence.cpp └── README.md ├── 0303-range-sum-query-immutable ├── 0303-range-sum-query-immutable.cpp └── README.md ├── 0307-range-sum-query-mutable ├── 0307-range-sum-query-mutable.cpp └── README.md ├── 0309-best-time-to-buy-and-sell-stock-with-cooldown ├── 0309-best-time-to-buy-and-sell-stock-with-cooldown.cpp └── README.md ├── 0312-burst-balloons ├── 0312-burst-balloons.cpp └── README.md ├── 0322-coin-change ├── 0322-coin-change.cpp └── README.md ├── 0326-power-of-three ├── 0326-power-of-three.cpp └── README.md ├── 0342-power-of-four ├── 0342-power-of-four.cpp └── README.md ├── 0347-top-k-frequent-elements ├── 0347-top-k-frequent-elements.cpp └── README.md ├── 0367-valid-perfect-square ├── 0367-valid-perfect-square.cpp └── README.md ├── 0368-largest-divisible-subset ├── 0368-largest-divisible-subset.cpp └── README.md ├── 0378-kth-smallest-element-in-a-sorted-matrix ├── 0378-kth-smallest-element-in-a-sorted-matrix.cpp └── README.md ├── 0386-lexicographical-numbers ├── 0386-lexicographical-numbers.cpp └── README.md ├── 0392-is-subsequence ├── 0392-is-subsequence.cpp └── README.md ├── 0407-trapping-rain-water-ii ├── 0407-trapping-rain-water-ii.cpp └── README.md ├── 0416-partition-equal-subset-sum ├── 0416-partition-equal-subset-sum.cpp └── README.md ├── 0417-pacific-atlantic-water-flow ├── 0417-pacific-atlantic-water-flow.cpp └── README.md ├── 0421-maximum-xor-of-two-numbers-in-an-array ├── 0421-maximum-xor-of-two-numbers-in-an-array.cpp └── README.md ├── 0440-k-th-smallest-in-lexicographical-order ├── 0440-k-th-smallest-in-lexicographical-order.cpp └── README.md ├── 0448-find-all-numbers-disappeared-in-an-array ├── 0448-find-all-numbers-disappeared-in-an-array.cpp └── README.md ├── 0450-delete-node-in-a-bst ├── 0450-delete-node-in-a-bst.cpp └── README.md ├── 0451-sort-characters-by-frequency ├── 0451-sort-characters-by-frequency.cpp └── README.md ├── 0474-ones-and-zeroes ├── 0474-ones-and-zeroes.cpp └── README.md ├── 0485-max-consecutive-ones ├── 0485-max-consecutive-ones.cpp └── README.md ├── 0494-target-sum ├── 0494-target-sum.cpp └── README.md ├── 0498-diagonal-traverse ├── 0498-diagonal-traverse.cpp └── README.md ├── 0516-longest-palindromic-subsequence ├── 0516-longest-palindromic-subsequence.cpp └── README.md ├── 0518-coin-change-ii ├── 0518-coin-change-ii.cpp └── README.md ├── 0530-minimum-absolute-difference-in-bst ├── 0530-minimum-absolute-difference-in-bst.cpp └── README.md ├── 0542-01-matrix ├── 0542-01-matrix.cpp └── README.md ├── 0543-diameter-of-binary-tree ├── 0543-diameter-of-binary-tree.cpp └── README.md ├── 0547-number-of-provinces ├── 0547-number-of-provinces.cpp └── README.md ├── 0583-delete-operation-for-two-strings ├── 0583-delete-operation-for-two-strings.cpp └── README.md ├── 0594-longest-harmonious-subsequence ├── 0594-longest-harmonious-subsequence.cpp └── README.md ├── 0605-can-place-flowers ├── 0605-can-place-flowers.java └── README.md ├── 0611-valid-triangle-number ├── 0611-valid-triangle-number.cpp ├── 0611-valid-triangle-number.java └── README.md ├── 0621-task-scheduler ├── 0621-task-scheduler.cpp └── README.md ├── 0643-maximum-average-subarray-i ├── 0643-maximum-average-subarray-i.cpp └── README.md ├── 0645-set-mismatch ├── 0645-set-mismatch.cpp ├── 0645-set-mismatch.java └── README.md ├── 0653-two-sum-iv-input-is-a-bst ├── 0653-two-sum-iv-input-is-a-bst.cpp └── README.md ├── 0662-maximum-width-of-binary-tree ├── 0662-maximum-width-of-binary-tree.cpp └── README.md ├── 0673-number-of-longest-increasing-subsequence ├── 0673-number-of-longest-increasing-subsequence.cpp └── README.md ├── 0679-24-game ├── 0679-24-game.cpp └── README.md ├── 0682-baseball-game ├── 0682-baseball-game.cpp └── README.md ├── 0695-max-area-of-island ├── 0695-max-area-of-island.cpp └── README.md ├── 0714-best-time-to-buy-and-sell-stock-with-transaction-fee ├── 0714-best-time-to-buy-and-sell-stock-with-transaction-fee.cpp └── README.md ├── 0717-1-bit-and-2-bit-characters ├── 0717-1-bit-and-2-bit-characters.cpp └── README.md ├── 0721-accounts-merge ├── 0721-accounts-merge.cpp └── README.md ├── 0733-flood-fill ├── 0733-flood-fill.cpp └── README.md ├── 0735-asteroid-collision ├── 0735-asteroid-collision.cpp └── README.md ├── 0744-network-delay-time ├── 0744-network-delay-time.cpp └── README.md ├── 0747-min-cost-climbing-stairs ├── 0747-min-cost-climbing-stairs.cpp └── README.md ├── 0759-set-intersection-size-at-least-two ├── 0759-set-intersection-size-at-least-two.cpp └── README.md ├── 0782-jewels-and-stones ├── 0782-jewels-and-stones.cpp └── README.md ├── 0783-search-in-a-binary-search-tree ├── 0783-search-in-a-binary-search-tree.cpp └── README.md ├── 0784-insert-into-a-binary-search-tree ├── 0784-insert-into-a-binary-search-tree.cpp └── README.md ├── 0794-swim-in-rising-water ├── 0794-swim-in-rising-water.cpp └── README.md ├── 0801-is-graph-bipartite ├── 0801-is-graph-bipartite.cpp └── README.md ├── 0803-cheapest-flights-within-k-stops ├── 0803-cheapest-flights-within-k-stops.cpp └── README.md ├── 0820-find-eventual-safe-states ├── 0820-find-eventual-safe-states.cpp └── README.md ├── 0830-largest-triangle-area ├── 0830-largest-triangle-area.cpp └── README.md ├── 0854-making-a-large-island ├── 0854-making-a-large-island.cpp └── README.md ├── 0871-keys-and-rooms ├── 0871-keys-and-rooms.cpp └── README.md ├── 0875-longest-mountain-in-array ├── 0875-longest-mountain-in-array.cpp └── README.md ├── 0876-hand-of-straights ├── 0876-hand-of-straights.cpp └── README.md ├── 0882-peak-index-in-a-mountain-array ├── 0882-peak-index-in-a-mountain-array.cpp └── README.md ├── 0893-all-nodes-distance-k-in-binary-tree ├── 0893-all-nodes-distance-k-in-binary-tree.cpp └── README.md ├── 0900-reordered-power-of-2 ├── 0900-reordered-power-of-2.cpp └── README.md ├── 0940-fruit-into-baskets ├── 0940-fruit-into-baskets.cpp └── README.md ├── 0948-sort-an-array ├── 0948-sort-an-array.cpp └── README.md ├── 0957-minimum-add-to-make-parentheses-valid ├── 0957-minimum-add-to-make-parentheses-valid.cpp └── README.md ├── 0967-minimum-falling-path-sum ├── 0967-minimum-falling-path-sum.cpp └── README.md ├── 0969-number-of-recent-calls ├── 0969-number-of-recent-calls.cpp └── README.md ├── 0978-valid-mountain-array ├── 0978-valid-mountain-array.cpp └── README.md ├── 0984-most-stones-removed-with-same-row-or-column ├── 0984-most-stones-removed-with-same-row-or-column.cpp └── README.md ├── 1006-vowel-spellchecker ├── 1006-vowel-spellchecker.cpp └── README.md ├── 1013-fibonacci-number ├── 1013-fibonacci-number.cpp └── README.md ├── 1014-k-closest-points-to-origin ├── 1014-k-closest-points-to-origin.cpp └── README.md ├── 1015-smallest-integer-divisible-by-k ├── 1015-smallest-integer-divisible-by-k.cpp ├── 1015-smallest-integer-divisible-by-k.js └── README.md ├── 1018-binary-prefix-divisible-by-5 ├── 1018-binary-prefix-divisible-by-5.cpp ├── 1018-binary-prefix-divisible-by-5.js └── README.md ├── 1018-largest-perimeter-triangle ├── 1018-largest-perimeter-triangle.cpp ├── 1018-largest-perimeter-triangle.java └── README.md ├── 1019-squares-of-a-sorted-array ├── 1019-squares-of-a-sorted-array.cpp └── README.md ├── 1029-vertical-order-traversal-of-a-binary-tree ├── 1029-vertical-order-traversal-of-a-binary-tree.cpp └── README.md ├── 1036-rotting-oranges ├── 1036-rotting-oranges.cpp └── README.md ├── 1050-construct-binary-search-tree-from-preorder-traversal ├── 1050-construct-binary-search-tree-from-preorder-traversal.cpp └── README.md ├── 1058-lexicographically-smallest-equivalent-string ├── 1058-lexicographically-smallest-equivalent-string.cpp └── README.md ├── 1073-number-of-enclaves ├── 1073-number-of-enclaves.cpp └── README.md ├── 1111-minimum-score-triangulation-of-polygon ├── 1111-minimum-score-triangulation-of-polygon.cpp └── README.md ├── 1121-partition-array-for-maximum-sum ├── 1121-partition-array-for-maximum-sum.cpp └── README.md ├── 1127-last-stone-weight ├── 1127-last-stone-weight.cpp └── README.md ├── 1129-longest-string-chain ├── 1129-longest-string-chain.cpp └── README.md ├── 1160-letter-tile-possibilities ├── 1160-letter-tile-possibilities.cpp └── README.md ├── 1170-shortest-common-supersequence ├── 1170-shortest-common-supersequence.cpp └── README.md ├── 1171-shortest-path-in-binary-matrix ├── 1171-shortest-path-in-binary-matrix.cpp └── README.md ├── 1179-game-play-analysis-i ├── 1179-game-play-analysis-i.sql └── README.md ├── 1197-parsing-a-boolean-expression ├── 1197-parsing-a-boolean-expression.cpp └── README.md ├── 1203-print-in-order ├── 1203-print-in-order.cpp └── README.md ├── 1250-longest-common-subsequence ├── 1250-longest-common-subsequence.cpp ├── 1250-longest-common-subsequence.java └── README.md ├── 1262-greatest-sum-divisible-by-three ├── 1262-greatest-sum-divisible-by-three.cpp ├── 1262-greatest-sum-divisible-by-three.js └── README.md ├── 1264-maximum-number-of-words-you-can-type ├── 1264-maximum-number-of-words-you-can-type.cpp └── README.md ├── 1293-three-consecutive-odds ├── 1293-three-consecutive-odds.cpp └── README.md ├── 1297-maximum-number-of-balloons ├── 1297-maximum-number-of-balloons.cpp └── README.md ├── 1300-critical-connections-in-a-network ├── 1300-critical-connections-in-a-network.cpp └── README.md ├── 1302-delete-characters-to-make-fancy-string ├── 1302-delete-characters-to-make-fancy-string.java └── README.md ├── 1319-unique-number-of-occurrences ├── 1319-unique-number-of-occurrences.cpp └── README.md ├── 1350-remove-sub-folders-from-the-filesystem ├── 1350-remove-sub-folders-from-the-filesystem.cpp ├── 1350-remove-sub-folders-from-the-filesystem.java └── README.md ├── 1353-find-resultant-array-after-removing-anagrams ├── 1353-find-resultant-array-after-removing-anagrams.cpp └── README.md ├── 1364-tuple-with-same-product ├── 1364-tuple-with-same-product.cpp └── README.md ├── 1392-find-the-difference-of-two-arrays ├── 1392-find-the-difference-of-two-arrays.cpp └── README.md ├── 1402-count-square-submatrices-with-all-ones ├── 1402-count-square-submatrices-with-all-ones.cpp └── README.md ├── 1411-convert-binary-number-in-a-linked-list-to-integer ├── 1411-convert-binary-number-in-a-linked-list-to-integer.cpp └── README.md ├── 1424-maximum-candies-you-can-get-from-boxes ├── 1424-maximum-candies-you-can-get-from-boxes.cpp └── README.md ├── 1426-find-n-unique-integers-sum-up-to-zero ├── 1426-find-n-unique-integers-sum-up-to-zero.cpp └── README.md ├── 1437-minimum-insertion-steps-to-make-a-string-palindrome ├── 1437-minimum-insertion-steps-to-make-a-string-palindrome.cpp └── README.md ├── 1440-convert-integer-to-the-sum-of-two-no-zero-integers ├── 1440-convert-integer-to-the-sum-of-two-no-zero-integers.cpp └── README.md ├── 1442-number-of-operations-to-make-network-connected ├── 1442-number-of-operations-to-make-network-connected.cpp └── README.md ├── 1456-find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance ├── 1456-find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance.cpp └── README.md ├── 1477-product-of-the-last-k-numbers ├── 1477-product-of-the-last-k-numbers.cpp └── README.md ├── 1478-maximum-number-of-events-that-can-be-attended ├── 1478-maximum-number-of-events-that-can-be-attended.java └── README.md ├── 1510-find-lucky-integer-in-an-array ├── 1510-find-lucky-integer-in-an-array.cpp └── README.md ├── 1523-count-odd-numbers-in-an-interval-range ├── 1523-count-odd-numbers-in-an-interval-range.cpp └── README.md ├── 1528-kids-with-the-greatest-number-of-candies ├── 1528-kids-with-the-greatest-number-of-candies.cpp └── README.md ├── 1529-max-difference-you-can-get-from-changing-an-integer ├── 1529-max-difference-you-can-get-from-changing-an-integer.cpp └── README.md ├── 1548-check-if-all-1s-are-at-least-length-k-places-away ├── 1548-check-if-all-1s-are-at-least-length-k-places-away.cpp └── README.md ├── 1586-longest-subarray-of-1s-after-deleting-one-element ├── 1586-longest-subarray-of-1s-after-deleting-one-element.cpp └── README.md ├── 1590-make-sum-divisible-by-p ├── 1590-make-sum-divisible-by-p.cpp └── README.md ├── 1612-avoid-flood-in-the-city ├── 1612-avoid-flood-in-the-city.cpp └── README.md ├── 1621-number-of-subsequences-that-satisfy-the-given-sum-condition ├── 1621-number-of-subsequences-that-satisfy-the-given-sum-condition.cpp └── README.md ├── 1628-count-submatrices-with-all-ones ├── 1628-count-submatrices-with-all-ones.cpp └── README.md ├── 1636-number-of-substrings-with-only-1s ├── 1636-number-of-substrings-with-only-1s.cpp └── README.md ├── 1642-water-bottles ├── 1642-water-bottles.cpp └── README.md ├── 1669-minimum-cost-to-cut-a-stick ├── 1669-minimum-cost-to-cut-a-stick.cpp └── README.md ├── 1700-minimum-time-to-make-rope-colorful ├── 1700-minimum-time-to-make-rope-colorful.cpp └── README.md ├── 1706-min-cost-to-connect-all-points ├── 1706-min-cost-to-connect-all-points.cpp └── README.md ├── 1732-minimum-one-bit-operations-to-make-integers-zero ├── 1732-minimum-one-bit-operations-to-make-integers-zero.cpp └── README.md ├── 1737-maximum-nesting-depth-of-the-parentheses ├── 1737-maximum-nesting-depth-of-the-parentheses.cpp └── README.md ├── 1747-lexicographically-smallest-string-after-applying-operations ├── 1747-lexicographically-smallest-string-after-applying-operations.cpp └── README.md ├── 1753-path-with-minimum-effort ├── 1753-path-with-minimum-effort.cpp └── README.md ├── 1813-maximum-erasure-value ├── 1813-maximum-erasure-value.cpp ├── 1813-maximum-erasure-value.java └── README.md ├── 1817-calculate-money-in-leetcode-bank ├── 1817-calculate-money-in-leetcode-bank.cpp ├── 1817-calculate-money-in-leetcode-bank.java └── README.md ├── 1818-maximum-score-from-removing-substrings ├── 1818-maximum-score-from-removing-substrings.cpp ├── 1818-maximum-score-from-removing-substrings.java └── README.md ├── 1819-construct-the-lexicographically-largest-valid-sequence ├── 1819-construct-the-lexicographically-largest-valid-sequence.cpp └── README.md ├── 1826-maximum-xor-with-an-element-from-array ├── 1826-maximum-xor-with-an-element-from-array.cpp └── README.md ├── 1834-minimum-number-of-people-to-teach ├── 1834-minimum-number-of-people-to-teach.cpp └── README.md ├── 1851-maximum-number-of-events-that-can-be-attended-ii ├── 1851-maximum-number-of-events-that-can-be-attended-ii.cpp └── README.md ├── 1878-check-if-array-is-sorted-and-rotated ├── 1878-check-if-array-is-sorted-and-rotated.cpp └── README.md ├── 1915-check-if-one-string-swap-can-make-strings-equal ├── 1915-check-if-one-string-swap-can-make-strings-equal.cpp └── README.md ├── 1917-maximum-average-pass-ratio ├── 1917-maximum-average-pass-ratio.cpp └── README.md ├── 1925-count-square-sum-triples ├── 1925-count-square-sum-triples.cpp └── README.md ├── 1927-maximum-ascending-subarray-sum ├── 1927-maximum-ascending-subarray-sum.cpp └── README.md ├── 1930-unique-length-3-palindromic-subsequences ├── 1930-unique-length-3-palindromic-subsequences.cpp └── README.md ├── 1995-finding-pairs-with-a-certain-sum ├── 1995-finding-pairs-with-a-certain-sum.cpp └── README.md ├── 2021-remove-all-occurrences-of-a-substring ├── 2021-remove-all-occurrences-of-a-substring.cpp └── README.md ├── 2023-design-movie-rental-system ├── 2023-design-movie-rental-system.cpp └── README.md ├── 2028-the-earliest-and-latest-rounds-where-players-compete ├── 2028-the-earliest-and-latest-rounds-where-players-compete.cpp └── README.md ├── 2038-nearest-exit-from-entrance-in-maze ├── 2038-nearest-exit-from-entrance-in-maze.cpp └── README.md ├── 2050-count-good-numbers ├── 2050-count-good-numbers.cpp └── README.md ├── 2121-find-if-path-exists-in-graph ├── 2121-find-if-path-exists-in-graph.cpp └── README.md ├── 2137-final-value-of-variable-after-performing-operations ├── 2137-final-value-of-variable-after-performing-operations.cpp └── README.md ├── 2144-maximum-difference-between-increasing-elements ├── 2144-maximum-difference-between-increasing-elements.cpp └── README.md ├── 2150-kth-smallest-product-of-two-sorted-arrays ├── 2150-kth-smallest-product-of-two-sorted-arrays.cpp └── README.md ├── 2169-simple-bank-system ├── 2169-simple-bank-system.cpp ├── 2169-simple-bank-system.java └── README.md ├── 2170-count-number-of-maximum-bitwise-or-subsets ├── 2170-count-number-of-maximum-bitwise-or-subsets.cpp └── README.md ├── 2174-next-greater-numerically-balanced-number ├── 2174-next-greater-numerically-balanced-number.java └── README.md ├── 2202-sum-of-k-mirror-numbers ├── 2202-sum-of-k-mirror-numbers.cpp └── README.md ├── 2204-find-subsequence-of-length-k-with-the-largest-sum ├── 2204-find-subsequence-of-length-k-with-the-largest-sum.cpp └── README.md ├── 2216-delete-the-middle-node-of-a-linked-list ├── 2216-delete-the-middle-node-of-a-linked-list.cpp └── README.md ├── 2229-maximum-fruits-harvested-after-at-most-k-steps ├── 2229-maximum-fruits-harvested-after-at-most-k-steps.cpp └── README.md ├── 2237-longest-palindrome-by-concatenating-two-letter-words ├── 2237-longest-palindrome-by-concatenating-two-letter-words.cpp └── README.md ├── 2244-number-of-laser-beams-in-a-bank ├── 2244-number-of-laser-beams-in-a-bank.cpp ├── 2244-number-of-laser-beams-in-a-bank.java └── README.md ├── 2254-check-if-every-row-and-column-contains-all-numbers ├── 2254-check-if-every-row-and-column-contains-all-numbers.cpp └── README.md ├── 2260-divide-a-string-into-groups-of-size-k ├── 2260-divide-a-string-into-groups-of-size-k.cpp └── README.md ├── 2267-minimum-difference-in-sums-after-removal-of-elements ├── 2267-minimum-difference-in-sums-after-removal-of-elements.cpp └── README.md ├── 2274-keep-multiplying-found-values-by-two ├── 2274-keep-multiplying-found-values-by-two.cpp └── README.md ├── 2288-count-operations-to-obtain-zero ├── 2288-count-operations-to-obtain-zero.cpp └── README.md ├── 2307-replace-non-coprime-numbers-in-array ├── 2307-replace-non-coprime-numbers-in-array.cpp └── README.md ├── 2316-count-hills-and-valleys-in-an-array ├── 2316-count-hills-and-valleys-in-an-array.cpp └── README.md ├── 2320-find-all-k-distant-indices-in-an-array ├── 2320-find-all-k-distant-indices-in-an-array.cpp └── README.md ├── 2323-minimum-bit-flips-to-convert-number ├── 2323-minimum-bit-flips-to-convert-number.cpp └── README.md ├── 2324-find-triangular-sum-of-an-array ├── 2324-find-triangular-sum-of-an-array.cpp ├── 2324-find-triangular-sum-of-an-array.java └── README.md ├── 2346-largest-3-same-digit-number-in-string ├── 2346-largest-3-same-digit-number-in-string.cpp └── README.md ├── 2350-find-closest-number-to-zero ├── 2350-find-closest-number-to-zero.cpp └── README.md ├── 2387-partition-array-such-that-maximum-difference-is-k ├── 2387-partition-array-such-that-maximum-difference-is-k.cpp └── README.md ├── 2392-successful-pairs-of-spells-and-potions ├── 2392-successful-pairs-of-spells-and-potions.cpp └── README.md ├── 2395-longest-binary-subsequence-less-than-or-equal-to-k ├── 2395-longest-binary-subsequence-less-than-or-equal-to-k.cpp └── README.md ├── 2400-minimum-score-after-removals-on-a-tree ├── 2400-minimum-score-after-removals-on-a-tree.cpp └── README.md ├── 2408-number-of-people-aware-of-a-secret ├── 2408-number-of-people-aware-of-a-secret.cpp └── README.md ├── 2429-design-a-food-rating-system ├── 2429-design-a-food-rating-system.cpp └── README.md ├── 2432-number-of-zero-filled-subarrays ├── 2432-number-of-zero-filled-subarrays.cpp └── README.md ├── 2434-design-a-number-container-system ├── 2434-design-a-number-container-system.cpp └── README.md ├── 2435-paths-in-matrix-whose-sum-is-divisible-by-k ├── 2435-paths-in-matrix-whose-sum-is-divisible-by-k.cpp └── README.md ├── 2438-find-closest-node-to-given-two-nodes ├── 2438-find-closest-node-to-given-two-nodes.cpp └── README.md ├── 2448-count-number-of-bad-pairs ├── 2448-count-number-of-bad-pairs.cpp └── README.md ├── 2473-max-sum-of-a-pair-with-equal-sum-of-digits ├── 2473-max-sum-of-a-pair-with-equal-sum-of-digits.cpp └── README.md ├── 2479-meeting-rooms-iii ├── 2479-meeting-rooms-iii.cpp └── README.md ├── 2481-strictly-palindromic-number ├── 2481-strictly-palindromic-number.cpp └── README.md ├── 2497-maximum-matching-of-players-with-trainers ├── 2497-maximum-matching-of-players-with-trainers.cpp ├── 2497-maximum-matching-of-players-with-trainers.java └── README.md ├── 2498-smallest-subarrays-with-maximum-bitwise-or ├── 2498-smallest-subarrays-with-maximum-bitwise-or.cpp └── README.md ├── 2529-range-product-queries-of-powers ├── 2529-range-product-queries-of-powers.cpp └── README.md ├── 2618-maximize-the-minimum-powered-city ├── 2618-maximize-the-minimum-powered-city.cpp └── README.md ├── 2625-increment-submatrices-by-one ├── 2625-increment-submatrices-by-one.cpp └── README.md ├── 2661-smallest-missing-non-negative-integer-after-operations ├── 2661-smallest-missing-non-negative-integer-after-operations.cpp └── README.md ├── 2689-rearranging-fruits ├── 2689-rearranging-fruits.cpp └── README.md ├── 2704-maximum-difference-by-remapping-a-digit ├── 2704-maximum-difference-by-remapping-a-digit.cpp └── README.md ├── 2720-minimize-the-maximum-difference-of-pairs ├── 2720-minimize-the-maximum-difference-of-pairs.cpp └── README.md ├── 2732-counter ├── 2732-counter.js └── README.md ├── 2802-find-the-punishment-number-of-an-integer ├── 2802-find-the-punishment-number-of-an-integer.cpp └── README.md ├── 2809-create-hello-world-function ├── 2809-create-hello-world-function.js └── README.md ├── 2837-minimum-operations-to-make-the-integer-zero ├── 2837-minimum-operations-to-make-the-integer-zero.cpp └── README.md ├── 2882-ways-to-express-an-integer-as-sum-of-powers ├── 2882-ways-to-express-an-integer-as-sum-of-powers.cpp └── README.md ├── 2887-sort-vowels-in-a-string ├── 2887-sort-vowels-in-a-string.cpp └── README.md ├── 3172-divisible-and-non-divisible-sums-difference ├── 3172-divisible-and-non-divisible-sums-difference.cpp └── README.md ├── 3181-find-building-where-alice-and-bob-can-meet ├── 3181-find-building-where-alice-and-bob-can-meet.cpp └── README.md ├── 3190-find-minimum-operations-to-make-all-elements-divisible-by-three ├── 3190-find-minimum-operations-to-make-all-elements-divisible-by-three.cpp ├── 3190-find-minimum-operations-to-make-all-elements-divisible-by-three.js └── README.md ├── 3194-find-words-containing-character ├── 3194-find-words-containing-character.cpp └── README.md ├── 3201-distribute-candies-among-children-ii ├── 3201-distribute-candies-among-children-ii.cpp └── README.md ├── 3233-maximize-the-number-of-partitions-after-operations ├── 3233-maximize-the-number-of-partitions-after-operations.cpp └── README.md ├── 3241-divide-array-into-arrays-with-max-difference ├── 3241-divide-array-into-arrays-with-max-difference.cpp └── README.md ├── 3242-count-elements-with-maximum-frequency ├── 3242-count-elements-with-maximum-frequency.cpp └── README.md ├── 3251-maximum-area-of-longest-diagonal-rectangle ├── 3251-maximum-area-of-longest-diagonal-rectangle.cpp └── README.md ├── 3277-find-the-number-of-ways-to-place-people-ii ├── 3277-find-the-number-of-ways-to-place-people-ii.cpp └── README.md ├── 3278-find-the-number-of-ways-to-place-people-i ├── 3278-find-the-number-of-ways-to-place-people-i.cpp └── README.md ├── 3321-type-of-triangle ├── 3321-type-of-triangle.cpp └── README.md ├── 3332-minimum-operations-to-exceed-threshold-value-ii ├── 3332-minimum-operations-to-exceed-threshold-value-ii.cpp └── README.md ├── 3336-water-bottles-ii ├── 3336-water-bottles-ii.cpp └── README.md ├── 3360-minimum-deletions-to-make-string-k-special ├── 3360-minimum-deletions-to-make-string-k-special.cpp └── README.md ├── 3372-longest-strictly-increasing-or-strictly-decreasing-subarray ├── 3372-longest-strictly-increasing-or-strictly-decreasing-subarray.cpp └── README.md ├── 3381-maximum-subarray-sum-with-length-divisible-by-k ├── 3381-maximum-subarray-sum-with-length-divisible-by-k.cpp └── README.md ├── 3383-taking-maximum-energy-from-the-mystic-dungeon ├── 3383-taking-maximum-energy-from-the-mystic-dungeon.cpp └── README.md ├── 3396-valid-word ├── 3396-valid-word.cpp ├── 3396-valid-word.java └── README.md ├── 3432-count-partitions-with-even-sum-difference ├── 3432-count-partitions-with-even-sum-difference.cpp └── README.md ├── 3434-find-the-number-of-distinct-colors-among-the-balls ├── 3434-find-the-number-of-distinct-colors-among-the-balls.cpp └── README.md ├── 3437-maximum-total-damage-with-spell-casting ├── 3437-maximum-total-damage-with-spell-casting.cpp └── README.md ├── 3445-lexicographically-minimum-string-after-removing-stars ├── 3445-lexicographically-minimum-string-after-removing-stars.cpp └── README.md ├── 3447-clear-digits ├── 3447-clear-digits.cpp └── README.md ├── 3459-find-the-minimum-area-to-cover-all-ones-ii ├── 3459-find-the-minimum-area-to-cover-all-ones-ii.cpp └── README.md ├── 3461-find-the-minimum-area-to-cover-all-ones-i ├── 3461-find-the-minimum-area-to-cover-all-ones-i.cpp └── README.md ├── 3462-vowels-game-in-a-string ├── 3462-vowels-game-in-a-string.cpp ├── 3462-vowels-game-in-a-string.java └── README.md ├── 3490-find-the-maximum-length-of-valid-subsequence-i ├── 3490-find-the-maximum-length-of-valid-subsequence-i.cpp ├── 3490-find-the-maximum-length-of-valid-subsequence-i.java └── README.md ├── 3491-find-the-maximum-length-of-valid-subsequence-ii ├── 3491-find-the-maximum-length-of-valid-subsequence-ii.cpp └── README.md ├── 3493-maximum-number-of-operations-to-move-ones-to-the-end ├── 3493-maximum-number-of-operations-to-move-ones-to-the-end.cpp └── README.md ├── 3578-count-partitions-with-max-min-difference-at-most-k ├── 3578-count-partitions-with-max-min-difference-at-most-k.cpp └── README.md ├── 3581-the-two-sneaky-numbers-of-digitville ├── 3581-the-two-sneaky-numbers-of-digitville.cpp └── README.md ├── 3583-count-special-triplets ├── 3583-count-special-triplets.cpp └── README.md ├── 3592-find-x-sum-of-all-k-long-subarrays-ii ├── 3592-find-x-sum-of-all-k-long-subarrays-ii.cpp └── README.md ├── 3600-find-the-k-th-character-in-string-game-i ├── 3600-find-the-k-th-character-in-string-game-i.java └── README.md ├── 3601-find-the-k-th-character-in-string-game-ii ├── 3601-find-the-k-th-character-in-string-game-ii.cpp └── README.md ├── 3610-find-x-sum-of-all-k-long-subarrays-i ├── 3610-find-x-sum-of-all-k-long-subarrays-i.cpp └── README.md ├── 3612-adjacent-increasing-subarrays-detection-i ├── 3612-adjacent-increasing-subarrays-detection-i.cpp └── README.md ├── 3616-make-array-elements-equal-to-zero ├── 3616-make-array-elements-equal-to-zero.cpp └── README.md ├── 3617-find-the-original-typed-string-i ├── 3617-find-the-original-typed-string-i.cpp ├── 3617-find-the-original-typed-string-i.java ├── 3617-find-the-original-typed-string-i.py └── README.md ├── 3618-find-the-original-typed-string-ii ├── 3618-find-the-original-typed-string-ii.cpp └── README.md ├── 3619-adjacent-increasing-subarrays-detection-ii ├── 3619-adjacent-increasing-subarrays-detection-ii.cpp └── README.md ├── 3620-maximum-number-of-distinct-elements-after-operations ├── 3620-maximum-number-of-distinct-elements-after-operations.java └── README.md ├── 3623-count-number-of-trapezoids-i ├── 3623-count-number-of-trapezoids-i.cpp └── README.md ├── 3627-find-minimum-time-to-reach-last-room-i ├── 3627-find-minimum-time-to-reach-last-room-i.cpp └── README.md ├── 3633-maximize-the-number-of-target-nodes-after-connecting-trees-i ├── 3633-maximize-the-number-of-target-nodes-after-connecting-trees-i.cpp └── README.md ├── 3645-maximize-the-number-of-target-nodes-after-connecting-trees-ii ├── 3645-maximize-the-number-of-target-nodes-after-connecting-trees-ii.cpp └── README.md ├── 3648-find-the-maximum-number-of-fruits-collected ├── 3648-find-the-maximum-number-of-fruits-collected.cpp └── README.md ├── 3676-smallest-number-with-all-set-bits ├── 3676-smallest-number-with-all-set-bits.cpp ├── 3676-smallest-number-with-all-set-bits.java └── README.md ├── 3678-design-task-manager ├── 3678-design-task-manager.cpp └── README.md ├── 3683-find-the-lexicographically-largest-string-from-the-box-i ├── 3683-find-the-lexicographically-largest-string-from-the-box-i.cpp └── README.md ├── 3733-length-of-longest-v-shaped-diagonal-segment ├── 3733-length-of-longest-v-shaped-diagonal-segment.cpp └── README.md ├── 3741-reschedule-meetings-for-maximum-free-time-ii ├── 3741-reschedule-meetings-for-maximum-free-time-ii.cpp └── README.md ├── 3743-reschedule-meetings-for-maximum-free-time-i ├── 3743-reschedule-meetings-for-maximum-free-time-i.cpp └── README.md ├── 3744-minimum-operations-to-make-array-elements-zero ├── 3744-minimum-operations-to-make-array-elements-zero.cpp └── README.md ├── 3747-maximum-difference-between-adjacent-elements-in-a-circular-array ├── 3747-maximum-difference-between-adjacent-elements-in-a-circular-array.cpp └── README.md ├── 3748-sort-matrix-by-diagonals ├── 3748-sort-matrix-by-diagonals.cpp └── README.md ├── 3753-maximum-difference-between-even-and-odd-frequency-i ├── 3753-maximum-difference-between-even-and-odd-frequency-i.cpp └── README.md ├── 3754-maximum-manhattan-distance-after-k-changes ├── 3754-maximum-manhattan-distance-after-k-changes.cpp └── README.md ├── 3761-maximum-difference-between-even-and-odd-frequency-ii ├── 3761-maximum-difference-between-even-and-odd-frequency-ii.cpp └── README.md ├── 3768-check-if-digits-are-equal-in-string-after-operations-i ├── 3768-check-if-digits-are-equal-in-string-after-operations-i.cpp ├── 3768-check-if-digits-are-equal-in-string-after-operations-i.java └── README.md ├── 3788-maximum-unique-subarray-sum-after-deletion ├── 3788-maximum-unique-subarray-sum-after-deletion.cpp └── README.md ├── 3789-maximize-subarrays-after-removing-one-conflicting-pair ├── 3789-maximize-subarrays-after-removing-one-conflicting-pair.cpp └── README.md ├── 3790-fruits-into-baskets-ii ├── 3790-fruits-into-baskets-ii.cpp └── README.md ├── 3791-fruits-into-baskets-iii ├── 3791-fruits-into-baskets-iii.cpp └── README.md ├── 3794-find-the-minimum-amount-of-time-to-brew-potions ├── 3794-find-the-minimum-amount-of-time-to-brew-potions.cpp └── README.md ├── 3797-design-spreadsheet ├── 3797-design-spreadsheet.cpp └── README.md ├── 3827-implement-router ├── 3827-implement-router.cpp └── README.md ├── 3830-find-closest-person ├── 3830-find-closest-person.cpp └── README.md ├── 3834-minimum-operations-to-convert-all-elements-to-zero ├── 3834-minimum-operations-to-convert-all-elements-to-zero.cpp └── README.md ├── 3851-find-sum-of-array-product-of-magical-sequences ├── 3851-find-sum-of-array-product-of-magical-sequences.cpp └── README.md ├── 3863-power-grid-maintenance ├── 3863-power-grid-maintenance.cpp └── README.md ├── 3872-find-most-frequent-vowel-and-consonant ├── 3872-find-most-frequent-vowel-and-consonant.cpp └── README.md ├── README.md └── stats.json /0001-two-sum/0001-two-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0001-two-sum/0001-two-sum.cpp -------------------------------------------------------------------------------- /0001-two-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0001-two-sum/README.md -------------------------------------------------------------------------------- /0011-container-with-most-water/0011-container-with-most-water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0011-container-with-most-water/0011-container-with-most-water.cpp -------------------------------------------------------------------------------- /0011-container-with-most-water/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0011-container-with-most-water/README.md -------------------------------------------------------------------------------- /0017-letter-combinations-of-a-phone-number/0017-letter-combinations-of-a-phone-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0017-letter-combinations-of-a-phone-number/0017-letter-combinations-of-a-phone-number.cpp -------------------------------------------------------------------------------- /0017-letter-combinations-of-a-phone-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0017-letter-combinations-of-a-phone-number/README.md -------------------------------------------------------------------------------- /0029-divide-two-integers/0029-divide-two-integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0029-divide-two-integers/0029-divide-two-integers.cpp -------------------------------------------------------------------------------- /0029-divide-two-integers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0029-divide-two-integers/README.md -------------------------------------------------------------------------------- /0034-find-first-and-last-position-of-element-in-sorted-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0034-find-first-and-last-position-of-element-in-sorted-array/README.md -------------------------------------------------------------------------------- /0036-valid-sudoku/0036-valid-sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0036-valid-sudoku/0036-valid-sudoku.cpp -------------------------------------------------------------------------------- /0036-valid-sudoku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0036-valid-sudoku/README.md -------------------------------------------------------------------------------- /0037-sudoku-solver/0037-sudoku-solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0037-sudoku-solver/0037-sudoku-solver.cpp -------------------------------------------------------------------------------- /0037-sudoku-solver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0037-sudoku-solver/README.md -------------------------------------------------------------------------------- /0039-combination-sum/0039-combination-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0039-combination-sum/0039-combination-sum.cpp -------------------------------------------------------------------------------- /0039-combination-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0039-combination-sum/README.md -------------------------------------------------------------------------------- /0040-combination-sum-ii/0040-combination-sum-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0040-combination-sum-ii/0040-combination-sum-ii.cpp -------------------------------------------------------------------------------- /0040-combination-sum-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0040-combination-sum-ii/README.md -------------------------------------------------------------------------------- /0044-wildcard-matching/0044-wildcard-matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0044-wildcard-matching/0044-wildcard-matching.cpp -------------------------------------------------------------------------------- /0044-wildcard-matching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0044-wildcard-matching/README.md -------------------------------------------------------------------------------- /0046-permutations/0046-permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0046-permutations/0046-permutations.cpp -------------------------------------------------------------------------------- /0046-permutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0046-permutations/README.md -------------------------------------------------------------------------------- /0047-permutations-ii/0047-permutations-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0047-permutations-ii/0047-permutations-ii.cpp -------------------------------------------------------------------------------- /0047-permutations-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0047-permutations-ii/README.md -------------------------------------------------------------------------------- /0053-maximum-subarray/0053-maximum-subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0053-maximum-subarray/0053-maximum-subarray.cpp -------------------------------------------------------------------------------- /0053-maximum-subarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0053-maximum-subarray/README.md -------------------------------------------------------------------------------- /0055-jump-game/0055-jump-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0055-jump-game/0055-jump-game.cpp -------------------------------------------------------------------------------- /0055-jump-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0055-jump-game/README.md -------------------------------------------------------------------------------- /0062-unique-paths/0062-unique-paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0062-unique-paths/0062-unique-paths.cpp -------------------------------------------------------------------------------- /0062-unique-paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0062-unique-paths/README.md -------------------------------------------------------------------------------- /0063-unique-paths-ii/0063-unique-paths-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0063-unique-paths-ii/0063-unique-paths-ii.cpp -------------------------------------------------------------------------------- /0063-unique-paths-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0063-unique-paths-ii/README.md -------------------------------------------------------------------------------- /0064-minimum-path-sum/0064-minimum-path-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0064-minimum-path-sum/0064-minimum-path-sum.cpp -------------------------------------------------------------------------------- /0064-minimum-path-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0064-minimum-path-sum/README.md -------------------------------------------------------------------------------- /0070-climbing-stairs/0070-climbing-stairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0070-climbing-stairs/0070-climbing-stairs.cpp -------------------------------------------------------------------------------- /0070-climbing-stairs/0070-climbing-stairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0070-climbing-stairs/0070-climbing-stairs.java -------------------------------------------------------------------------------- /0070-climbing-stairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0070-climbing-stairs/README.md -------------------------------------------------------------------------------- /0072-edit-distance/0072-edit-distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0072-edit-distance/0072-edit-distance.cpp -------------------------------------------------------------------------------- /0072-edit-distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0072-edit-distance/README.md -------------------------------------------------------------------------------- /0075-sort-colors/0075-sort-colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0075-sort-colors/0075-sort-colors.cpp -------------------------------------------------------------------------------- /0075-sort-colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0075-sort-colors/README.md -------------------------------------------------------------------------------- /0077-combinations/0077-combinations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0077-combinations/0077-combinations.cpp -------------------------------------------------------------------------------- /0077-combinations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0077-combinations/README.md -------------------------------------------------------------------------------- /0078-subsets/0078-subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0078-subsets/0078-subsets.cpp -------------------------------------------------------------------------------- /0078-subsets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0078-subsets/README.md -------------------------------------------------------------------------------- /0079-word-search/0079-word-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0079-word-search/0079-word-search.cpp -------------------------------------------------------------------------------- /0079-word-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0079-word-search/README.md -------------------------------------------------------------------------------- /0094-binary-tree-inorder-traversal/0094-binary-tree-inorder-traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0094-binary-tree-inorder-traversal/0094-binary-tree-inorder-traversal.cpp -------------------------------------------------------------------------------- /0094-binary-tree-inorder-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0094-binary-tree-inorder-traversal/README.md -------------------------------------------------------------------------------- /0098-validate-binary-search-tree/0098-validate-binary-search-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0098-validate-binary-search-tree/0098-validate-binary-search-tree.cpp -------------------------------------------------------------------------------- /0098-validate-binary-search-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0098-validate-binary-search-tree/README.md -------------------------------------------------------------------------------- /0099-recover-binary-search-tree/0099-recover-binary-search-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0099-recover-binary-search-tree/0099-recover-binary-search-tree.cpp -------------------------------------------------------------------------------- /0099-recover-binary-search-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0099-recover-binary-search-tree/README.md -------------------------------------------------------------------------------- /0100-same-tree/0100-same-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0100-same-tree/0100-same-tree.cpp -------------------------------------------------------------------------------- /0100-same-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0100-same-tree/README.md -------------------------------------------------------------------------------- /0101-symmetric-tree/0101-symmetric-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0101-symmetric-tree/0101-symmetric-tree.cpp -------------------------------------------------------------------------------- /0101-symmetric-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0101-symmetric-tree/README.md -------------------------------------------------------------------------------- /0102-binary-tree-level-order-traversal/0102-binary-tree-level-order-traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0102-binary-tree-level-order-traversal/0102-binary-tree-level-order-traversal.cpp -------------------------------------------------------------------------------- /0102-binary-tree-level-order-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0102-binary-tree-level-order-traversal/README.md -------------------------------------------------------------------------------- /0103-binary-tree-zigzag-level-order-traversal/0103-binary-tree-zigzag-level-order-traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0103-binary-tree-zigzag-level-order-traversal/0103-binary-tree-zigzag-level-order-traversal.cpp -------------------------------------------------------------------------------- /0103-binary-tree-zigzag-level-order-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0103-binary-tree-zigzag-level-order-traversal/README.md -------------------------------------------------------------------------------- /0104-maximum-depth-of-binary-tree/0104-maximum-depth-of-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0104-maximum-depth-of-binary-tree/0104-maximum-depth-of-binary-tree.cpp -------------------------------------------------------------------------------- /0104-maximum-depth-of-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0104-maximum-depth-of-binary-tree/README.md -------------------------------------------------------------------------------- /0105-construct-binary-tree-from-preorder-and-inorder-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0105-construct-binary-tree-from-preorder-and-inorder-traversal/README.md -------------------------------------------------------------------------------- /0106-construct-binary-tree-from-inorder-and-postorder-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0106-construct-binary-tree-from-inorder-and-postorder-traversal/README.md -------------------------------------------------------------------------------- /0110-balanced-binary-tree/0110-balanced-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0110-balanced-binary-tree/0110-balanced-binary-tree.cpp -------------------------------------------------------------------------------- /0110-balanced-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0110-balanced-binary-tree/README.md -------------------------------------------------------------------------------- /0114-flatten-binary-tree-to-linked-list/0114-flatten-binary-tree-to-linked-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0114-flatten-binary-tree-to-linked-list/0114-flatten-binary-tree-to-linked-list.cpp -------------------------------------------------------------------------------- /0114-flatten-binary-tree-to-linked-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0114-flatten-binary-tree-to-linked-list/README.md -------------------------------------------------------------------------------- /0115-distinct-subsequences/0115-distinct-subsequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0115-distinct-subsequences/0115-distinct-subsequences.cpp -------------------------------------------------------------------------------- /0115-distinct-subsequences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0115-distinct-subsequences/README.md -------------------------------------------------------------------------------- /0118-pascals-triangle/0118-pascals-triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0118-pascals-triangle/0118-pascals-triangle.cpp -------------------------------------------------------------------------------- /0118-pascals-triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0118-pascals-triangle/README.md -------------------------------------------------------------------------------- /0120-triangle/0120-triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0120-triangle/0120-triangle.cpp -------------------------------------------------------------------------------- /0120-triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0120-triangle/README.md -------------------------------------------------------------------------------- /0121-best-time-to-buy-and-sell-stock/0121-best-time-to-buy-and-sell-stock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0121-best-time-to-buy-and-sell-stock/0121-best-time-to-buy-and-sell-stock.cpp -------------------------------------------------------------------------------- /0121-best-time-to-buy-and-sell-stock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0121-best-time-to-buy-and-sell-stock/README.md -------------------------------------------------------------------------------- /0122-best-time-to-buy-and-sell-stock-ii/0122-best-time-to-buy-and-sell-stock-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0122-best-time-to-buy-and-sell-stock-ii/0122-best-time-to-buy-and-sell-stock-ii.cpp -------------------------------------------------------------------------------- /0122-best-time-to-buy-and-sell-stock-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0122-best-time-to-buy-and-sell-stock-ii/README.md -------------------------------------------------------------------------------- /0123-best-time-to-buy-and-sell-stock-iii/0123-best-time-to-buy-and-sell-stock-iii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0123-best-time-to-buy-and-sell-stock-iii/0123-best-time-to-buy-and-sell-stock-iii.cpp -------------------------------------------------------------------------------- /0123-best-time-to-buy-and-sell-stock-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0123-best-time-to-buy-and-sell-stock-iii/README.md -------------------------------------------------------------------------------- /0124-binary-tree-maximum-path-sum/0124-binary-tree-maximum-path-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0124-binary-tree-maximum-path-sum/0124-binary-tree-maximum-path-sum.cpp -------------------------------------------------------------------------------- /0124-binary-tree-maximum-path-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0124-binary-tree-maximum-path-sum/README.md -------------------------------------------------------------------------------- /0127-word-ladder/0127-word-ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0127-word-ladder/0127-word-ladder.cpp -------------------------------------------------------------------------------- /0127-word-ladder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0127-word-ladder/README.md -------------------------------------------------------------------------------- /0130-surrounded-regions/0130-surrounded-regions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0130-surrounded-regions/0130-surrounded-regions.cpp -------------------------------------------------------------------------------- /0130-surrounded-regions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0130-surrounded-regions/README.md -------------------------------------------------------------------------------- /0131-palindrome-partitioning/0131-palindrome-partitioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0131-palindrome-partitioning/0131-palindrome-partitioning.cpp -------------------------------------------------------------------------------- /0131-palindrome-partitioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0131-palindrome-partitioning/README.md -------------------------------------------------------------------------------- /0132-palindrome-partitioning-ii/0132-palindrome-partitioning-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0132-palindrome-partitioning-ii/0132-palindrome-partitioning-ii.cpp -------------------------------------------------------------------------------- /0132-palindrome-partitioning-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0132-palindrome-partitioning-ii/README.md -------------------------------------------------------------------------------- /0135-candy/0135-candy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0135-candy/0135-candy.cpp -------------------------------------------------------------------------------- /0135-candy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0135-candy/README.md -------------------------------------------------------------------------------- /0136-single-number/0136-single-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0136-single-number/0136-single-number.cpp -------------------------------------------------------------------------------- /0136-single-number/0136-single-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0136-single-number/0136-single-number.java -------------------------------------------------------------------------------- /0136-single-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0136-single-number/README.md -------------------------------------------------------------------------------- /0137-single-number-ii/0137-single-number-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0137-single-number-ii/0137-single-number-ii.cpp -------------------------------------------------------------------------------- /0137-single-number-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0137-single-number-ii/README.md -------------------------------------------------------------------------------- /0144-binary-tree-preorder-traversal/0144-binary-tree-preorder-traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0144-binary-tree-preorder-traversal/0144-binary-tree-preorder-traversal.cpp -------------------------------------------------------------------------------- /0144-binary-tree-preorder-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0144-binary-tree-preorder-traversal/README.md -------------------------------------------------------------------------------- /0145-binary-tree-postorder-traversal/0145-binary-tree-postorder-traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0145-binary-tree-postorder-traversal/0145-binary-tree-postorder-traversal.cpp -------------------------------------------------------------------------------- /0145-binary-tree-postorder-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0145-binary-tree-postorder-traversal/README.md -------------------------------------------------------------------------------- /0151-reverse-words-in-a-string/0151-reverse-words-in-a-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0151-reverse-words-in-a-string/0151-reverse-words-in-a-string.cpp -------------------------------------------------------------------------------- /0151-reverse-words-in-a-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0151-reverse-words-in-a-string/README.md -------------------------------------------------------------------------------- /0165-compare-version-numbers/0165-compare-version-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0165-compare-version-numbers/0165-compare-version-numbers.cpp -------------------------------------------------------------------------------- /0165-compare-version-numbers/0165-compare-version-numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0165-compare-version-numbers/0165-compare-version-numbers.java -------------------------------------------------------------------------------- /0165-compare-version-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0165-compare-version-numbers/README.md -------------------------------------------------------------------------------- /0166-fraction-to-recurring-decimal/0166-fraction-to-recurring-decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0166-fraction-to-recurring-decimal/0166-fraction-to-recurring-decimal.cpp -------------------------------------------------------------------------------- /0166-fraction-to-recurring-decimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0166-fraction-to-recurring-decimal/README.md -------------------------------------------------------------------------------- /0167-two-sum-ii-input-array-is-sorted/0167-two-sum-ii-input-array-is-sorted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0167-two-sum-ii-input-array-is-sorted/0167-two-sum-ii-input-array-is-sorted.cpp -------------------------------------------------------------------------------- /0167-two-sum-ii-input-array-is-sorted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0167-two-sum-ii-input-array-is-sorted/README.md -------------------------------------------------------------------------------- /0173-binary-search-tree-iterator/0173-binary-search-tree-iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0173-binary-search-tree-iterator/0173-binary-search-tree-iterator.cpp -------------------------------------------------------------------------------- /0173-binary-search-tree-iterator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0173-binary-search-tree-iterator/README.md -------------------------------------------------------------------------------- /0175-combine-two-tables/0175-combine-two-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0175-combine-two-tables/0175-combine-two-tables.sql -------------------------------------------------------------------------------- /0175-combine-two-tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0175-combine-two-tables/README.md -------------------------------------------------------------------------------- /0183-customers-who-never-order/0183-customers-who-never-order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0183-customers-who-never-order/0183-customers-who-never-order.sql -------------------------------------------------------------------------------- /0183-customers-who-never-order/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0183-customers-who-never-order/README.md -------------------------------------------------------------------------------- /0188-best-time-to-buy-and-sell-stock-iv/0188-best-time-to-buy-and-sell-stock-iv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0188-best-time-to-buy-and-sell-stock-iv/0188-best-time-to-buy-and-sell-stock-iv.cpp -------------------------------------------------------------------------------- /0188-best-time-to-buy-and-sell-stock-iv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0188-best-time-to-buy-and-sell-stock-iv/README.md -------------------------------------------------------------------------------- /0198-house-robber/0198-house-robber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0198-house-robber/0198-house-robber.cpp -------------------------------------------------------------------------------- /0198-house-robber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0198-house-robber/README.md -------------------------------------------------------------------------------- /0199-binary-tree-right-side-view/0199-binary-tree-right-side-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0199-binary-tree-right-side-view/0199-binary-tree-right-side-view.cpp -------------------------------------------------------------------------------- /0199-binary-tree-right-side-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0199-binary-tree-right-side-view/README.md -------------------------------------------------------------------------------- /0200-number-of-islands/0200-number-of-islands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0200-number-of-islands/0200-number-of-islands.cpp -------------------------------------------------------------------------------- /0200-number-of-islands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0200-number-of-islands/README.md -------------------------------------------------------------------------------- /0204-count-primes/0204-count-primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0204-count-primes/0204-count-primes.cpp -------------------------------------------------------------------------------- /0204-count-primes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0204-count-primes/README.md -------------------------------------------------------------------------------- /0205-isomorphic-strings/0205-isomorphic-strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0205-isomorphic-strings/0205-isomorphic-strings.cpp -------------------------------------------------------------------------------- /0205-isomorphic-strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0205-isomorphic-strings/README.md -------------------------------------------------------------------------------- /0207-course-schedule/0207-course-schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0207-course-schedule/0207-course-schedule.cpp -------------------------------------------------------------------------------- /0207-course-schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0207-course-schedule/README.md -------------------------------------------------------------------------------- /0208-implement-trie-prefix-tree/0208-implement-trie-prefix-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0208-implement-trie-prefix-tree/0208-implement-trie-prefix-tree.cpp -------------------------------------------------------------------------------- /0208-implement-trie-prefix-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0208-implement-trie-prefix-tree/README.md -------------------------------------------------------------------------------- /0210-course-schedule-ii/0210-course-schedule-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0210-course-schedule-ii/0210-course-schedule-ii.cpp -------------------------------------------------------------------------------- /0210-course-schedule-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0210-course-schedule-ii/README.md -------------------------------------------------------------------------------- /0213-house-robber-ii/0213-house-robber-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0213-house-robber-ii/0213-house-robber-ii.cpp -------------------------------------------------------------------------------- /0213-house-robber-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0213-house-robber-ii/README.md -------------------------------------------------------------------------------- /0215-kth-largest-element-in-an-array/0215-kth-largest-element-in-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0215-kth-largest-element-in-an-array/0215-kth-largest-element-in-an-array.cpp -------------------------------------------------------------------------------- /0215-kth-largest-element-in-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0215-kth-largest-element-in-an-array/README.md -------------------------------------------------------------------------------- /0216-combination-sum-iii/0216-combination-sum-iii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0216-combination-sum-iii/0216-combination-sum-iii.cpp -------------------------------------------------------------------------------- /0216-combination-sum-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0216-combination-sum-iii/README.md -------------------------------------------------------------------------------- /0217-contains-duplicate/0217-contains-duplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0217-contains-duplicate/0217-contains-duplicate.cpp -------------------------------------------------------------------------------- /0217-contains-duplicate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0217-contains-duplicate/README.md -------------------------------------------------------------------------------- /0222-count-complete-tree-nodes/0222-count-complete-tree-nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0222-count-complete-tree-nodes/0222-count-complete-tree-nodes.cpp -------------------------------------------------------------------------------- /0222-count-complete-tree-nodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0222-count-complete-tree-nodes/README.md -------------------------------------------------------------------------------- /0230-kth-smallest-element-in-a-bst/0230-kth-smallest-element-in-a-bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0230-kth-smallest-element-in-a-bst/0230-kth-smallest-element-in-a-bst.cpp -------------------------------------------------------------------------------- /0230-kth-smallest-element-in-a-bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0230-kth-smallest-element-in-a-bst/README.md -------------------------------------------------------------------------------- /0231-power-of-two/0231-power-of-two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0231-power-of-two/0231-power-of-two.cpp -------------------------------------------------------------------------------- /0231-power-of-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0231-power-of-two/README.md -------------------------------------------------------------------------------- /0235-lowest-common-ancestor-of-a-binary-search-tree/0235-lowest-common-ancestor-of-a-binary-search-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0235-lowest-common-ancestor-of-a-binary-search-tree/0235-lowest-common-ancestor-of-a-binary-search-tree.cpp -------------------------------------------------------------------------------- /0235-lowest-common-ancestor-of-a-binary-search-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0235-lowest-common-ancestor-of-a-binary-search-tree/README.md -------------------------------------------------------------------------------- /0236-lowest-common-ancestor-of-a-binary-tree/0236-lowest-common-ancestor-of-a-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0236-lowest-common-ancestor-of-a-binary-tree/0236-lowest-common-ancestor-of-a-binary-tree.cpp -------------------------------------------------------------------------------- /0236-lowest-common-ancestor-of-a-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0236-lowest-common-ancestor-of-a-binary-tree/README.md -------------------------------------------------------------------------------- /0238-product-of-array-except-self/0238-product-of-array-except-self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0238-product-of-array-except-self/0238-product-of-array-except-self.cpp -------------------------------------------------------------------------------- /0238-product-of-array-except-self/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0238-product-of-array-except-self/README.md -------------------------------------------------------------------------------- /0260-single-number-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0260-single-number-iii/README.md -------------------------------------------------------------------------------- /0297-serialize-and-deserialize-binary-tree/0297-serialize-and-deserialize-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0297-serialize-and-deserialize-binary-tree/0297-serialize-and-deserialize-binary-tree.cpp -------------------------------------------------------------------------------- /0297-serialize-and-deserialize-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0297-serialize-and-deserialize-binary-tree/README.md -------------------------------------------------------------------------------- /0300-longest-increasing-subsequence/0300-longest-increasing-subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0300-longest-increasing-subsequence/0300-longest-increasing-subsequence.cpp -------------------------------------------------------------------------------- /0300-longest-increasing-subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0300-longest-increasing-subsequence/README.md -------------------------------------------------------------------------------- /0303-range-sum-query-immutable/0303-range-sum-query-immutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0303-range-sum-query-immutable/0303-range-sum-query-immutable.cpp -------------------------------------------------------------------------------- /0303-range-sum-query-immutable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0303-range-sum-query-immutable/README.md -------------------------------------------------------------------------------- /0307-range-sum-query-mutable/0307-range-sum-query-mutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0307-range-sum-query-mutable/0307-range-sum-query-mutable.cpp -------------------------------------------------------------------------------- /0307-range-sum-query-mutable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0307-range-sum-query-mutable/README.md -------------------------------------------------------------------------------- /0309-best-time-to-buy-and-sell-stock-with-cooldown/0309-best-time-to-buy-and-sell-stock-with-cooldown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0309-best-time-to-buy-and-sell-stock-with-cooldown/0309-best-time-to-buy-and-sell-stock-with-cooldown.cpp -------------------------------------------------------------------------------- /0309-best-time-to-buy-and-sell-stock-with-cooldown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0309-best-time-to-buy-and-sell-stock-with-cooldown/README.md -------------------------------------------------------------------------------- /0312-burst-balloons/0312-burst-balloons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0312-burst-balloons/0312-burst-balloons.cpp -------------------------------------------------------------------------------- /0312-burst-balloons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0312-burst-balloons/README.md -------------------------------------------------------------------------------- /0322-coin-change/0322-coin-change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0322-coin-change/0322-coin-change.cpp -------------------------------------------------------------------------------- /0322-coin-change/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0322-coin-change/README.md -------------------------------------------------------------------------------- /0326-power-of-three/0326-power-of-three.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0326-power-of-three/0326-power-of-three.cpp -------------------------------------------------------------------------------- /0326-power-of-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0326-power-of-three/README.md -------------------------------------------------------------------------------- /0342-power-of-four/0342-power-of-four.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0342-power-of-four/0342-power-of-four.cpp -------------------------------------------------------------------------------- /0342-power-of-four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0342-power-of-four/README.md -------------------------------------------------------------------------------- /0347-top-k-frequent-elements/0347-top-k-frequent-elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0347-top-k-frequent-elements/0347-top-k-frequent-elements.cpp -------------------------------------------------------------------------------- /0347-top-k-frequent-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0347-top-k-frequent-elements/README.md -------------------------------------------------------------------------------- /0367-valid-perfect-square/0367-valid-perfect-square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0367-valid-perfect-square/0367-valid-perfect-square.cpp -------------------------------------------------------------------------------- /0367-valid-perfect-square/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0367-valid-perfect-square/README.md -------------------------------------------------------------------------------- /0368-largest-divisible-subset/0368-largest-divisible-subset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0368-largest-divisible-subset/0368-largest-divisible-subset.cpp -------------------------------------------------------------------------------- /0368-largest-divisible-subset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0368-largest-divisible-subset/README.md -------------------------------------------------------------------------------- /0378-kth-smallest-element-in-a-sorted-matrix/0378-kth-smallest-element-in-a-sorted-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0378-kth-smallest-element-in-a-sorted-matrix/0378-kth-smallest-element-in-a-sorted-matrix.cpp -------------------------------------------------------------------------------- /0378-kth-smallest-element-in-a-sorted-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0378-kth-smallest-element-in-a-sorted-matrix/README.md -------------------------------------------------------------------------------- /0386-lexicographical-numbers/0386-lexicographical-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0386-lexicographical-numbers/0386-lexicographical-numbers.cpp -------------------------------------------------------------------------------- /0386-lexicographical-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0386-lexicographical-numbers/README.md -------------------------------------------------------------------------------- /0392-is-subsequence/0392-is-subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0392-is-subsequence/0392-is-subsequence.cpp -------------------------------------------------------------------------------- /0392-is-subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0392-is-subsequence/README.md -------------------------------------------------------------------------------- /0407-trapping-rain-water-ii/0407-trapping-rain-water-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0407-trapping-rain-water-ii/0407-trapping-rain-water-ii.cpp -------------------------------------------------------------------------------- /0407-trapping-rain-water-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0407-trapping-rain-water-ii/README.md -------------------------------------------------------------------------------- /0416-partition-equal-subset-sum/0416-partition-equal-subset-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0416-partition-equal-subset-sum/0416-partition-equal-subset-sum.cpp -------------------------------------------------------------------------------- /0416-partition-equal-subset-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0416-partition-equal-subset-sum/README.md -------------------------------------------------------------------------------- /0417-pacific-atlantic-water-flow/0417-pacific-atlantic-water-flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0417-pacific-atlantic-water-flow/0417-pacific-atlantic-water-flow.cpp -------------------------------------------------------------------------------- /0417-pacific-atlantic-water-flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0417-pacific-atlantic-water-flow/README.md -------------------------------------------------------------------------------- /0421-maximum-xor-of-two-numbers-in-an-array/0421-maximum-xor-of-two-numbers-in-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0421-maximum-xor-of-two-numbers-in-an-array/0421-maximum-xor-of-two-numbers-in-an-array.cpp -------------------------------------------------------------------------------- /0421-maximum-xor-of-two-numbers-in-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0421-maximum-xor-of-two-numbers-in-an-array/README.md -------------------------------------------------------------------------------- /0440-k-th-smallest-in-lexicographical-order/0440-k-th-smallest-in-lexicographical-order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0440-k-th-smallest-in-lexicographical-order/0440-k-th-smallest-in-lexicographical-order.cpp -------------------------------------------------------------------------------- /0440-k-th-smallest-in-lexicographical-order/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0440-k-th-smallest-in-lexicographical-order/README.md -------------------------------------------------------------------------------- /0448-find-all-numbers-disappeared-in-an-array/0448-find-all-numbers-disappeared-in-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0448-find-all-numbers-disappeared-in-an-array/0448-find-all-numbers-disappeared-in-an-array.cpp -------------------------------------------------------------------------------- /0448-find-all-numbers-disappeared-in-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0448-find-all-numbers-disappeared-in-an-array/README.md -------------------------------------------------------------------------------- /0450-delete-node-in-a-bst/0450-delete-node-in-a-bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0450-delete-node-in-a-bst/0450-delete-node-in-a-bst.cpp -------------------------------------------------------------------------------- /0450-delete-node-in-a-bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0450-delete-node-in-a-bst/README.md -------------------------------------------------------------------------------- /0451-sort-characters-by-frequency/0451-sort-characters-by-frequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0451-sort-characters-by-frequency/0451-sort-characters-by-frequency.cpp -------------------------------------------------------------------------------- /0451-sort-characters-by-frequency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0451-sort-characters-by-frequency/README.md -------------------------------------------------------------------------------- /0474-ones-and-zeroes/0474-ones-and-zeroes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0474-ones-and-zeroes/0474-ones-and-zeroes.cpp -------------------------------------------------------------------------------- /0474-ones-and-zeroes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0474-ones-and-zeroes/README.md -------------------------------------------------------------------------------- /0485-max-consecutive-ones/0485-max-consecutive-ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0485-max-consecutive-ones/0485-max-consecutive-ones.cpp -------------------------------------------------------------------------------- /0485-max-consecutive-ones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0485-max-consecutive-ones/README.md -------------------------------------------------------------------------------- /0494-target-sum/0494-target-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0494-target-sum/0494-target-sum.cpp -------------------------------------------------------------------------------- /0494-target-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0494-target-sum/README.md -------------------------------------------------------------------------------- /0498-diagonal-traverse/0498-diagonal-traverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0498-diagonal-traverse/0498-diagonal-traverse.cpp -------------------------------------------------------------------------------- /0498-diagonal-traverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0498-diagonal-traverse/README.md -------------------------------------------------------------------------------- /0516-longest-palindromic-subsequence/0516-longest-palindromic-subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0516-longest-palindromic-subsequence/0516-longest-palindromic-subsequence.cpp -------------------------------------------------------------------------------- /0516-longest-palindromic-subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0516-longest-palindromic-subsequence/README.md -------------------------------------------------------------------------------- /0518-coin-change-ii/0518-coin-change-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0518-coin-change-ii/0518-coin-change-ii.cpp -------------------------------------------------------------------------------- /0518-coin-change-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0518-coin-change-ii/README.md -------------------------------------------------------------------------------- /0530-minimum-absolute-difference-in-bst/0530-minimum-absolute-difference-in-bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0530-minimum-absolute-difference-in-bst/0530-minimum-absolute-difference-in-bst.cpp -------------------------------------------------------------------------------- /0530-minimum-absolute-difference-in-bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0530-minimum-absolute-difference-in-bst/README.md -------------------------------------------------------------------------------- /0542-01-matrix/0542-01-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0542-01-matrix/0542-01-matrix.cpp -------------------------------------------------------------------------------- /0542-01-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0542-01-matrix/README.md -------------------------------------------------------------------------------- /0543-diameter-of-binary-tree/0543-diameter-of-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0543-diameter-of-binary-tree/0543-diameter-of-binary-tree.cpp -------------------------------------------------------------------------------- /0543-diameter-of-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0543-diameter-of-binary-tree/README.md -------------------------------------------------------------------------------- /0547-number-of-provinces/0547-number-of-provinces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0547-number-of-provinces/0547-number-of-provinces.cpp -------------------------------------------------------------------------------- /0547-number-of-provinces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0547-number-of-provinces/README.md -------------------------------------------------------------------------------- /0583-delete-operation-for-two-strings/0583-delete-operation-for-two-strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0583-delete-operation-for-two-strings/0583-delete-operation-for-two-strings.cpp -------------------------------------------------------------------------------- /0583-delete-operation-for-two-strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0583-delete-operation-for-two-strings/README.md -------------------------------------------------------------------------------- /0594-longest-harmonious-subsequence/0594-longest-harmonious-subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0594-longest-harmonious-subsequence/0594-longest-harmonious-subsequence.cpp -------------------------------------------------------------------------------- /0594-longest-harmonious-subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0594-longest-harmonious-subsequence/README.md -------------------------------------------------------------------------------- /0605-can-place-flowers/0605-can-place-flowers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0605-can-place-flowers/0605-can-place-flowers.java -------------------------------------------------------------------------------- /0605-can-place-flowers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0605-can-place-flowers/README.md -------------------------------------------------------------------------------- /0611-valid-triangle-number/0611-valid-triangle-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0611-valid-triangle-number/0611-valid-triangle-number.cpp -------------------------------------------------------------------------------- /0611-valid-triangle-number/0611-valid-triangle-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0611-valid-triangle-number/0611-valid-triangle-number.java -------------------------------------------------------------------------------- /0611-valid-triangle-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0611-valid-triangle-number/README.md -------------------------------------------------------------------------------- /0621-task-scheduler/0621-task-scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0621-task-scheduler/0621-task-scheduler.cpp -------------------------------------------------------------------------------- /0621-task-scheduler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0621-task-scheduler/README.md -------------------------------------------------------------------------------- /0643-maximum-average-subarray-i/0643-maximum-average-subarray-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0643-maximum-average-subarray-i/0643-maximum-average-subarray-i.cpp -------------------------------------------------------------------------------- /0643-maximum-average-subarray-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0643-maximum-average-subarray-i/README.md -------------------------------------------------------------------------------- /0645-set-mismatch/0645-set-mismatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0645-set-mismatch/0645-set-mismatch.cpp -------------------------------------------------------------------------------- /0645-set-mismatch/0645-set-mismatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0645-set-mismatch/0645-set-mismatch.java -------------------------------------------------------------------------------- /0645-set-mismatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0645-set-mismatch/README.md -------------------------------------------------------------------------------- /0653-two-sum-iv-input-is-a-bst/0653-two-sum-iv-input-is-a-bst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0653-two-sum-iv-input-is-a-bst/0653-two-sum-iv-input-is-a-bst.cpp -------------------------------------------------------------------------------- /0653-two-sum-iv-input-is-a-bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0653-two-sum-iv-input-is-a-bst/README.md -------------------------------------------------------------------------------- /0662-maximum-width-of-binary-tree/0662-maximum-width-of-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0662-maximum-width-of-binary-tree/0662-maximum-width-of-binary-tree.cpp -------------------------------------------------------------------------------- /0662-maximum-width-of-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0662-maximum-width-of-binary-tree/README.md -------------------------------------------------------------------------------- /0673-number-of-longest-increasing-subsequence/0673-number-of-longest-increasing-subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0673-number-of-longest-increasing-subsequence/0673-number-of-longest-increasing-subsequence.cpp -------------------------------------------------------------------------------- /0673-number-of-longest-increasing-subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0673-number-of-longest-increasing-subsequence/README.md -------------------------------------------------------------------------------- /0679-24-game/0679-24-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0679-24-game/0679-24-game.cpp -------------------------------------------------------------------------------- /0679-24-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0679-24-game/README.md -------------------------------------------------------------------------------- /0682-baseball-game/0682-baseball-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0682-baseball-game/0682-baseball-game.cpp -------------------------------------------------------------------------------- /0682-baseball-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0682-baseball-game/README.md -------------------------------------------------------------------------------- /0695-max-area-of-island/0695-max-area-of-island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0695-max-area-of-island/0695-max-area-of-island.cpp -------------------------------------------------------------------------------- /0695-max-area-of-island/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0695-max-area-of-island/README.md -------------------------------------------------------------------------------- /0714-best-time-to-buy-and-sell-stock-with-transaction-fee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0714-best-time-to-buy-and-sell-stock-with-transaction-fee/README.md -------------------------------------------------------------------------------- /0717-1-bit-and-2-bit-characters/0717-1-bit-and-2-bit-characters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0717-1-bit-and-2-bit-characters/0717-1-bit-and-2-bit-characters.cpp -------------------------------------------------------------------------------- /0717-1-bit-and-2-bit-characters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0717-1-bit-and-2-bit-characters/README.md -------------------------------------------------------------------------------- /0721-accounts-merge/0721-accounts-merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0721-accounts-merge/0721-accounts-merge.cpp -------------------------------------------------------------------------------- /0721-accounts-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0721-accounts-merge/README.md -------------------------------------------------------------------------------- /0733-flood-fill/0733-flood-fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0733-flood-fill/0733-flood-fill.cpp -------------------------------------------------------------------------------- /0733-flood-fill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0733-flood-fill/README.md -------------------------------------------------------------------------------- /0735-asteroid-collision/0735-asteroid-collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0735-asteroid-collision/0735-asteroid-collision.cpp -------------------------------------------------------------------------------- /0735-asteroid-collision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0735-asteroid-collision/README.md -------------------------------------------------------------------------------- /0744-network-delay-time/0744-network-delay-time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0744-network-delay-time/0744-network-delay-time.cpp -------------------------------------------------------------------------------- /0744-network-delay-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0744-network-delay-time/README.md -------------------------------------------------------------------------------- /0747-min-cost-climbing-stairs/0747-min-cost-climbing-stairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0747-min-cost-climbing-stairs/0747-min-cost-climbing-stairs.cpp -------------------------------------------------------------------------------- /0747-min-cost-climbing-stairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0747-min-cost-climbing-stairs/README.md -------------------------------------------------------------------------------- /0759-set-intersection-size-at-least-two/0759-set-intersection-size-at-least-two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0759-set-intersection-size-at-least-two/0759-set-intersection-size-at-least-two.cpp -------------------------------------------------------------------------------- /0759-set-intersection-size-at-least-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0759-set-intersection-size-at-least-two/README.md -------------------------------------------------------------------------------- /0782-jewels-and-stones/0782-jewels-and-stones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0782-jewels-and-stones/0782-jewels-and-stones.cpp -------------------------------------------------------------------------------- /0782-jewels-and-stones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0782-jewels-and-stones/README.md -------------------------------------------------------------------------------- /0783-search-in-a-binary-search-tree/0783-search-in-a-binary-search-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0783-search-in-a-binary-search-tree/0783-search-in-a-binary-search-tree.cpp -------------------------------------------------------------------------------- /0783-search-in-a-binary-search-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0783-search-in-a-binary-search-tree/README.md -------------------------------------------------------------------------------- /0784-insert-into-a-binary-search-tree/0784-insert-into-a-binary-search-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0784-insert-into-a-binary-search-tree/0784-insert-into-a-binary-search-tree.cpp -------------------------------------------------------------------------------- /0784-insert-into-a-binary-search-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0784-insert-into-a-binary-search-tree/README.md -------------------------------------------------------------------------------- /0794-swim-in-rising-water/0794-swim-in-rising-water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0794-swim-in-rising-water/0794-swim-in-rising-water.cpp -------------------------------------------------------------------------------- /0794-swim-in-rising-water/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0794-swim-in-rising-water/README.md -------------------------------------------------------------------------------- /0801-is-graph-bipartite/0801-is-graph-bipartite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0801-is-graph-bipartite/0801-is-graph-bipartite.cpp -------------------------------------------------------------------------------- /0801-is-graph-bipartite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0801-is-graph-bipartite/README.md -------------------------------------------------------------------------------- /0803-cheapest-flights-within-k-stops/0803-cheapest-flights-within-k-stops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0803-cheapest-flights-within-k-stops/0803-cheapest-flights-within-k-stops.cpp -------------------------------------------------------------------------------- /0803-cheapest-flights-within-k-stops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0803-cheapest-flights-within-k-stops/README.md -------------------------------------------------------------------------------- /0820-find-eventual-safe-states/0820-find-eventual-safe-states.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0820-find-eventual-safe-states/0820-find-eventual-safe-states.cpp -------------------------------------------------------------------------------- /0820-find-eventual-safe-states/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0820-find-eventual-safe-states/README.md -------------------------------------------------------------------------------- /0830-largest-triangle-area/0830-largest-triangle-area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0830-largest-triangle-area/0830-largest-triangle-area.cpp -------------------------------------------------------------------------------- /0830-largest-triangle-area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0830-largest-triangle-area/README.md -------------------------------------------------------------------------------- /0854-making-a-large-island/0854-making-a-large-island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0854-making-a-large-island/0854-making-a-large-island.cpp -------------------------------------------------------------------------------- /0854-making-a-large-island/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0854-making-a-large-island/README.md -------------------------------------------------------------------------------- /0871-keys-and-rooms/0871-keys-and-rooms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0871-keys-and-rooms/0871-keys-and-rooms.cpp -------------------------------------------------------------------------------- /0871-keys-and-rooms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0871-keys-and-rooms/README.md -------------------------------------------------------------------------------- /0875-longest-mountain-in-array/0875-longest-mountain-in-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0875-longest-mountain-in-array/0875-longest-mountain-in-array.cpp -------------------------------------------------------------------------------- /0875-longest-mountain-in-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0875-longest-mountain-in-array/README.md -------------------------------------------------------------------------------- /0876-hand-of-straights/0876-hand-of-straights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0876-hand-of-straights/0876-hand-of-straights.cpp -------------------------------------------------------------------------------- /0876-hand-of-straights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0876-hand-of-straights/README.md -------------------------------------------------------------------------------- /0882-peak-index-in-a-mountain-array/0882-peak-index-in-a-mountain-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0882-peak-index-in-a-mountain-array/0882-peak-index-in-a-mountain-array.cpp -------------------------------------------------------------------------------- /0882-peak-index-in-a-mountain-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0882-peak-index-in-a-mountain-array/README.md -------------------------------------------------------------------------------- /0893-all-nodes-distance-k-in-binary-tree/0893-all-nodes-distance-k-in-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0893-all-nodes-distance-k-in-binary-tree/0893-all-nodes-distance-k-in-binary-tree.cpp -------------------------------------------------------------------------------- /0893-all-nodes-distance-k-in-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0893-all-nodes-distance-k-in-binary-tree/README.md -------------------------------------------------------------------------------- /0900-reordered-power-of-2/0900-reordered-power-of-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0900-reordered-power-of-2/0900-reordered-power-of-2.cpp -------------------------------------------------------------------------------- /0900-reordered-power-of-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0900-reordered-power-of-2/README.md -------------------------------------------------------------------------------- /0940-fruit-into-baskets/0940-fruit-into-baskets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0940-fruit-into-baskets/0940-fruit-into-baskets.cpp -------------------------------------------------------------------------------- /0940-fruit-into-baskets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0940-fruit-into-baskets/README.md -------------------------------------------------------------------------------- /0948-sort-an-array/0948-sort-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0948-sort-an-array/0948-sort-an-array.cpp -------------------------------------------------------------------------------- /0948-sort-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0948-sort-an-array/README.md -------------------------------------------------------------------------------- /0957-minimum-add-to-make-parentheses-valid/0957-minimum-add-to-make-parentheses-valid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0957-minimum-add-to-make-parentheses-valid/0957-minimum-add-to-make-parentheses-valid.cpp -------------------------------------------------------------------------------- /0957-minimum-add-to-make-parentheses-valid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0957-minimum-add-to-make-parentheses-valid/README.md -------------------------------------------------------------------------------- /0967-minimum-falling-path-sum/0967-minimum-falling-path-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0967-minimum-falling-path-sum/0967-minimum-falling-path-sum.cpp -------------------------------------------------------------------------------- /0967-minimum-falling-path-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0967-minimum-falling-path-sum/README.md -------------------------------------------------------------------------------- /0969-number-of-recent-calls/0969-number-of-recent-calls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0969-number-of-recent-calls/0969-number-of-recent-calls.cpp -------------------------------------------------------------------------------- /0969-number-of-recent-calls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0969-number-of-recent-calls/README.md -------------------------------------------------------------------------------- /0978-valid-mountain-array/0978-valid-mountain-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0978-valid-mountain-array/0978-valid-mountain-array.cpp -------------------------------------------------------------------------------- /0978-valid-mountain-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0978-valid-mountain-array/README.md -------------------------------------------------------------------------------- /0984-most-stones-removed-with-same-row-or-column/0984-most-stones-removed-with-same-row-or-column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0984-most-stones-removed-with-same-row-or-column/0984-most-stones-removed-with-same-row-or-column.cpp -------------------------------------------------------------------------------- /0984-most-stones-removed-with-same-row-or-column/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/0984-most-stones-removed-with-same-row-or-column/README.md -------------------------------------------------------------------------------- /1006-vowel-spellchecker/1006-vowel-spellchecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1006-vowel-spellchecker/1006-vowel-spellchecker.cpp -------------------------------------------------------------------------------- /1006-vowel-spellchecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1006-vowel-spellchecker/README.md -------------------------------------------------------------------------------- /1013-fibonacci-number/1013-fibonacci-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1013-fibonacci-number/1013-fibonacci-number.cpp -------------------------------------------------------------------------------- /1013-fibonacci-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1013-fibonacci-number/README.md -------------------------------------------------------------------------------- /1014-k-closest-points-to-origin/1014-k-closest-points-to-origin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1014-k-closest-points-to-origin/1014-k-closest-points-to-origin.cpp -------------------------------------------------------------------------------- /1014-k-closest-points-to-origin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1014-k-closest-points-to-origin/README.md -------------------------------------------------------------------------------- /1015-smallest-integer-divisible-by-k/1015-smallest-integer-divisible-by-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1015-smallest-integer-divisible-by-k/1015-smallest-integer-divisible-by-k.cpp -------------------------------------------------------------------------------- /1015-smallest-integer-divisible-by-k/1015-smallest-integer-divisible-by-k.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1015-smallest-integer-divisible-by-k/1015-smallest-integer-divisible-by-k.js -------------------------------------------------------------------------------- /1015-smallest-integer-divisible-by-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1015-smallest-integer-divisible-by-k/README.md -------------------------------------------------------------------------------- /1018-binary-prefix-divisible-by-5/1018-binary-prefix-divisible-by-5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1018-binary-prefix-divisible-by-5/1018-binary-prefix-divisible-by-5.cpp -------------------------------------------------------------------------------- /1018-binary-prefix-divisible-by-5/1018-binary-prefix-divisible-by-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1018-binary-prefix-divisible-by-5/1018-binary-prefix-divisible-by-5.js -------------------------------------------------------------------------------- /1018-binary-prefix-divisible-by-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1018-binary-prefix-divisible-by-5/README.md -------------------------------------------------------------------------------- /1018-largest-perimeter-triangle/1018-largest-perimeter-triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1018-largest-perimeter-triangle/1018-largest-perimeter-triangle.cpp -------------------------------------------------------------------------------- /1018-largest-perimeter-triangle/1018-largest-perimeter-triangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1018-largest-perimeter-triangle/1018-largest-perimeter-triangle.java -------------------------------------------------------------------------------- /1018-largest-perimeter-triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1018-largest-perimeter-triangle/README.md -------------------------------------------------------------------------------- /1019-squares-of-a-sorted-array/1019-squares-of-a-sorted-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1019-squares-of-a-sorted-array/1019-squares-of-a-sorted-array.cpp -------------------------------------------------------------------------------- /1019-squares-of-a-sorted-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1019-squares-of-a-sorted-array/README.md -------------------------------------------------------------------------------- /1029-vertical-order-traversal-of-a-binary-tree/1029-vertical-order-traversal-of-a-binary-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1029-vertical-order-traversal-of-a-binary-tree/1029-vertical-order-traversal-of-a-binary-tree.cpp -------------------------------------------------------------------------------- /1029-vertical-order-traversal-of-a-binary-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1029-vertical-order-traversal-of-a-binary-tree/README.md -------------------------------------------------------------------------------- /1036-rotting-oranges/1036-rotting-oranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1036-rotting-oranges/1036-rotting-oranges.cpp -------------------------------------------------------------------------------- /1036-rotting-oranges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1036-rotting-oranges/README.md -------------------------------------------------------------------------------- /1050-construct-binary-search-tree-from-preorder-traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1050-construct-binary-search-tree-from-preorder-traversal/README.md -------------------------------------------------------------------------------- /1058-lexicographically-smallest-equivalent-string/1058-lexicographically-smallest-equivalent-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1058-lexicographically-smallest-equivalent-string/1058-lexicographically-smallest-equivalent-string.cpp -------------------------------------------------------------------------------- /1058-lexicographically-smallest-equivalent-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1058-lexicographically-smallest-equivalent-string/README.md -------------------------------------------------------------------------------- /1073-number-of-enclaves/1073-number-of-enclaves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1073-number-of-enclaves/1073-number-of-enclaves.cpp -------------------------------------------------------------------------------- /1073-number-of-enclaves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1073-number-of-enclaves/README.md -------------------------------------------------------------------------------- /1111-minimum-score-triangulation-of-polygon/1111-minimum-score-triangulation-of-polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1111-minimum-score-triangulation-of-polygon/1111-minimum-score-triangulation-of-polygon.cpp -------------------------------------------------------------------------------- /1111-minimum-score-triangulation-of-polygon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1111-minimum-score-triangulation-of-polygon/README.md -------------------------------------------------------------------------------- /1121-partition-array-for-maximum-sum/1121-partition-array-for-maximum-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1121-partition-array-for-maximum-sum/1121-partition-array-for-maximum-sum.cpp -------------------------------------------------------------------------------- /1121-partition-array-for-maximum-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1121-partition-array-for-maximum-sum/README.md -------------------------------------------------------------------------------- /1127-last-stone-weight/1127-last-stone-weight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1127-last-stone-weight/1127-last-stone-weight.cpp -------------------------------------------------------------------------------- /1127-last-stone-weight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1127-last-stone-weight/README.md -------------------------------------------------------------------------------- /1129-longest-string-chain/1129-longest-string-chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1129-longest-string-chain/1129-longest-string-chain.cpp -------------------------------------------------------------------------------- /1129-longest-string-chain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1129-longest-string-chain/README.md -------------------------------------------------------------------------------- /1160-letter-tile-possibilities/1160-letter-tile-possibilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1160-letter-tile-possibilities/1160-letter-tile-possibilities.cpp -------------------------------------------------------------------------------- /1160-letter-tile-possibilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1160-letter-tile-possibilities/README.md -------------------------------------------------------------------------------- /1170-shortest-common-supersequence/1170-shortest-common-supersequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1170-shortest-common-supersequence/1170-shortest-common-supersequence.cpp -------------------------------------------------------------------------------- /1170-shortest-common-supersequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1170-shortest-common-supersequence/README.md -------------------------------------------------------------------------------- /1171-shortest-path-in-binary-matrix/1171-shortest-path-in-binary-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1171-shortest-path-in-binary-matrix/1171-shortest-path-in-binary-matrix.cpp -------------------------------------------------------------------------------- /1171-shortest-path-in-binary-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1171-shortest-path-in-binary-matrix/README.md -------------------------------------------------------------------------------- /1179-game-play-analysis-i/1179-game-play-analysis-i.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1179-game-play-analysis-i/1179-game-play-analysis-i.sql -------------------------------------------------------------------------------- /1179-game-play-analysis-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1179-game-play-analysis-i/README.md -------------------------------------------------------------------------------- /1197-parsing-a-boolean-expression/1197-parsing-a-boolean-expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1197-parsing-a-boolean-expression/1197-parsing-a-boolean-expression.cpp -------------------------------------------------------------------------------- /1197-parsing-a-boolean-expression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1197-parsing-a-boolean-expression/README.md -------------------------------------------------------------------------------- /1203-print-in-order/1203-print-in-order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1203-print-in-order/1203-print-in-order.cpp -------------------------------------------------------------------------------- /1203-print-in-order/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1203-print-in-order/README.md -------------------------------------------------------------------------------- /1250-longest-common-subsequence/1250-longest-common-subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1250-longest-common-subsequence/1250-longest-common-subsequence.cpp -------------------------------------------------------------------------------- /1250-longest-common-subsequence/1250-longest-common-subsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1250-longest-common-subsequence/1250-longest-common-subsequence.java -------------------------------------------------------------------------------- /1250-longest-common-subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1250-longest-common-subsequence/README.md -------------------------------------------------------------------------------- /1262-greatest-sum-divisible-by-three/1262-greatest-sum-divisible-by-three.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1262-greatest-sum-divisible-by-three/1262-greatest-sum-divisible-by-three.cpp -------------------------------------------------------------------------------- /1262-greatest-sum-divisible-by-three/1262-greatest-sum-divisible-by-three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1262-greatest-sum-divisible-by-three/1262-greatest-sum-divisible-by-three.js -------------------------------------------------------------------------------- /1262-greatest-sum-divisible-by-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1262-greatest-sum-divisible-by-three/README.md -------------------------------------------------------------------------------- /1264-maximum-number-of-words-you-can-type/1264-maximum-number-of-words-you-can-type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1264-maximum-number-of-words-you-can-type/1264-maximum-number-of-words-you-can-type.cpp -------------------------------------------------------------------------------- /1264-maximum-number-of-words-you-can-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1264-maximum-number-of-words-you-can-type/README.md -------------------------------------------------------------------------------- /1293-three-consecutive-odds/1293-three-consecutive-odds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1293-three-consecutive-odds/1293-three-consecutive-odds.cpp -------------------------------------------------------------------------------- /1293-three-consecutive-odds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1293-three-consecutive-odds/README.md -------------------------------------------------------------------------------- /1297-maximum-number-of-balloons/1297-maximum-number-of-balloons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1297-maximum-number-of-balloons/1297-maximum-number-of-balloons.cpp -------------------------------------------------------------------------------- /1297-maximum-number-of-balloons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1297-maximum-number-of-balloons/README.md -------------------------------------------------------------------------------- /1300-critical-connections-in-a-network/1300-critical-connections-in-a-network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1300-critical-connections-in-a-network/1300-critical-connections-in-a-network.cpp -------------------------------------------------------------------------------- /1300-critical-connections-in-a-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1300-critical-connections-in-a-network/README.md -------------------------------------------------------------------------------- /1302-delete-characters-to-make-fancy-string/1302-delete-characters-to-make-fancy-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1302-delete-characters-to-make-fancy-string/1302-delete-characters-to-make-fancy-string.java -------------------------------------------------------------------------------- /1302-delete-characters-to-make-fancy-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1302-delete-characters-to-make-fancy-string/README.md -------------------------------------------------------------------------------- /1319-unique-number-of-occurrences/1319-unique-number-of-occurrences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1319-unique-number-of-occurrences/1319-unique-number-of-occurrences.cpp -------------------------------------------------------------------------------- /1319-unique-number-of-occurrences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1319-unique-number-of-occurrences/README.md -------------------------------------------------------------------------------- /1350-remove-sub-folders-from-the-filesystem/1350-remove-sub-folders-from-the-filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1350-remove-sub-folders-from-the-filesystem/1350-remove-sub-folders-from-the-filesystem.cpp -------------------------------------------------------------------------------- /1350-remove-sub-folders-from-the-filesystem/1350-remove-sub-folders-from-the-filesystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1350-remove-sub-folders-from-the-filesystem/1350-remove-sub-folders-from-the-filesystem.java -------------------------------------------------------------------------------- /1350-remove-sub-folders-from-the-filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1350-remove-sub-folders-from-the-filesystem/README.md -------------------------------------------------------------------------------- /1353-find-resultant-array-after-removing-anagrams/1353-find-resultant-array-after-removing-anagrams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1353-find-resultant-array-after-removing-anagrams/1353-find-resultant-array-after-removing-anagrams.cpp -------------------------------------------------------------------------------- /1353-find-resultant-array-after-removing-anagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1353-find-resultant-array-after-removing-anagrams/README.md -------------------------------------------------------------------------------- /1364-tuple-with-same-product/1364-tuple-with-same-product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1364-tuple-with-same-product/1364-tuple-with-same-product.cpp -------------------------------------------------------------------------------- /1364-tuple-with-same-product/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1364-tuple-with-same-product/README.md -------------------------------------------------------------------------------- /1392-find-the-difference-of-two-arrays/1392-find-the-difference-of-two-arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1392-find-the-difference-of-two-arrays/1392-find-the-difference-of-two-arrays.cpp -------------------------------------------------------------------------------- /1392-find-the-difference-of-two-arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1392-find-the-difference-of-two-arrays/README.md -------------------------------------------------------------------------------- /1402-count-square-submatrices-with-all-ones/1402-count-square-submatrices-with-all-ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1402-count-square-submatrices-with-all-ones/1402-count-square-submatrices-with-all-ones.cpp -------------------------------------------------------------------------------- /1402-count-square-submatrices-with-all-ones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1402-count-square-submatrices-with-all-ones/README.md -------------------------------------------------------------------------------- /1411-convert-binary-number-in-a-linked-list-to-integer/1411-convert-binary-number-in-a-linked-list-to-integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1411-convert-binary-number-in-a-linked-list-to-integer/1411-convert-binary-number-in-a-linked-list-to-integer.cpp -------------------------------------------------------------------------------- /1411-convert-binary-number-in-a-linked-list-to-integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1411-convert-binary-number-in-a-linked-list-to-integer/README.md -------------------------------------------------------------------------------- /1424-maximum-candies-you-can-get-from-boxes/1424-maximum-candies-you-can-get-from-boxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1424-maximum-candies-you-can-get-from-boxes/1424-maximum-candies-you-can-get-from-boxes.cpp -------------------------------------------------------------------------------- /1424-maximum-candies-you-can-get-from-boxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1424-maximum-candies-you-can-get-from-boxes/README.md -------------------------------------------------------------------------------- /1426-find-n-unique-integers-sum-up-to-zero/1426-find-n-unique-integers-sum-up-to-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1426-find-n-unique-integers-sum-up-to-zero/1426-find-n-unique-integers-sum-up-to-zero.cpp -------------------------------------------------------------------------------- /1426-find-n-unique-integers-sum-up-to-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1426-find-n-unique-integers-sum-up-to-zero/README.md -------------------------------------------------------------------------------- /1437-minimum-insertion-steps-to-make-a-string-palindrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1437-minimum-insertion-steps-to-make-a-string-palindrome/README.md -------------------------------------------------------------------------------- /1440-convert-integer-to-the-sum-of-two-no-zero-integers/1440-convert-integer-to-the-sum-of-two-no-zero-integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1440-convert-integer-to-the-sum-of-two-no-zero-integers/1440-convert-integer-to-the-sum-of-two-no-zero-integers.cpp -------------------------------------------------------------------------------- /1440-convert-integer-to-the-sum-of-two-no-zero-integers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1440-convert-integer-to-the-sum-of-two-no-zero-integers/README.md -------------------------------------------------------------------------------- /1442-number-of-operations-to-make-network-connected/1442-number-of-operations-to-make-network-connected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1442-number-of-operations-to-make-network-connected/1442-number-of-operations-to-make-network-connected.cpp -------------------------------------------------------------------------------- /1442-number-of-operations-to-make-network-connected/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1442-number-of-operations-to-make-network-connected/README.md -------------------------------------------------------------------------------- /1456-find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1456-find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance/README.md -------------------------------------------------------------------------------- /1477-product-of-the-last-k-numbers/1477-product-of-the-last-k-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1477-product-of-the-last-k-numbers/1477-product-of-the-last-k-numbers.cpp -------------------------------------------------------------------------------- /1477-product-of-the-last-k-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1477-product-of-the-last-k-numbers/README.md -------------------------------------------------------------------------------- /1478-maximum-number-of-events-that-can-be-attended/1478-maximum-number-of-events-that-can-be-attended.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1478-maximum-number-of-events-that-can-be-attended/1478-maximum-number-of-events-that-can-be-attended.java -------------------------------------------------------------------------------- /1478-maximum-number-of-events-that-can-be-attended/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1478-maximum-number-of-events-that-can-be-attended/README.md -------------------------------------------------------------------------------- /1510-find-lucky-integer-in-an-array/1510-find-lucky-integer-in-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1510-find-lucky-integer-in-an-array/1510-find-lucky-integer-in-an-array.cpp -------------------------------------------------------------------------------- /1510-find-lucky-integer-in-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1510-find-lucky-integer-in-an-array/README.md -------------------------------------------------------------------------------- /1523-count-odd-numbers-in-an-interval-range/1523-count-odd-numbers-in-an-interval-range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1523-count-odd-numbers-in-an-interval-range/1523-count-odd-numbers-in-an-interval-range.cpp -------------------------------------------------------------------------------- /1523-count-odd-numbers-in-an-interval-range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1523-count-odd-numbers-in-an-interval-range/README.md -------------------------------------------------------------------------------- /1528-kids-with-the-greatest-number-of-candies/1528-kids-with-the-greatest-number-of-candies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1528-kids-with-the-greatest-number-of-candies/1528-kids-with-the-greatest-number-of-candies.cpp -------------------------------------------------------------------------------- /1528-kids-with-the-greatest-number-of-candies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1528-kids-with-the-greatest-number-of-candies/README.md -------------------------------------------------------------------------------- /1529-max-difference-you-can-get-from-changing-an-integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1529-max-difference-you-can-get-from-changing-an-integer/README.md -------------------------------------------------------------------------------- /1548-check-if-all-1s-are-at-least-length-k-places-away/1548-check-if-all-1s-are-at-least-length-k-places-away.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1548-check-if-all-1s-are-at-least-length-k-places-away/1548-check-if-all-1s-are-at-least-length-k-places-away.cpp -------------------------------------------------------------------------------- /1548-check-if-all-1s-are-at-least-length-k-places-away/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1548-check-if-all-1s-are-at-least-length-k-places-away/README.md -------------------------------------------------------------------------------- /1586-longest-subarray-of-1s-after-deleting-one-element/1586-longest-subarray-of-1s-after-deleting-one-element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1586-longest-subarray-of-1s-after-deleting-one-element/1586-longest-subarray-of-1s-after-deleting-one-element.cpp -------------------------------------------------------------------------------- /1586-longest-subarray-of-1s-after-deleting-one-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1586-longest-subarray-of-1s-after-deleting-one-element/README.md -------------------------------------------------------------------------------- /1590-make-sum-divisible-by-p/1590-make-sum-divisible-by-p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1590-make-sum-divisible-by-p/1590-make-sum-divisible-by-p.cpp -------------------------------------------------------------------------------- /1590-make-sum-divisible-by-p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1590-make-sum-divisible-by-p/README.md -------------------------------------------------------------------------------- /1612-avoid-flood-in-the-city/1612-avoid-flood-in-the-city.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1612-avoid-flood-in-the-city/1612-avoid-flood-in-the-city.cpp -------------------------------------------------------------------------------- /1612-avoid-flood-in-the-city/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1612-avoid-flood-in-the-city/README.md -------------------------------------------------------------------------------- /1621-number-of-subsequences-that-satisfy-the-given-sum-condition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1621-number-of-subsequences-that-satisfy-the-given-sum-condition/README.md -------------------------------------------------------------------------------- /1628-count-submatrices-with-all-ones/1628-count-submatrices-with-all-ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1628-count-submatrices-with-all-ones/1628-count-submatrices-with-all-ones.cpp -------------------------------------------------------------------------------- /1628-count-submatrices-with-all-ones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1628-count-submatrices-with-all-ones/README.md -------------------------------------------------------------------------------- /1636-number-of-substrings-with-only-1s/1636-number-of-substrings-with-only-1s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1636-number-of-substrings-with-only-1s/1636-number-of-substrings-with-only-1s.cpp -------------------------------------------------------------------------------- /1636-number-of-substrings-with-only-1s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1636-number-of-substrings-with-only-1s/README.md -------------------------------------------------------------------------------- /1642-water-bottles/1642-water-bottles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1642-water-bottles/1642-water-bottles.cpp -------------------------------------------------------------------------------- /1642-water-bottles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1642-water-bottles/README.md -------------------------------------------------------------------------------- /1669-minimum-cost-to-cut-a-stick/1669-minimum-cost-to-cut-a-stick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1669-minimum-cost-to-cut-a-stick/1669-minimum-cost-to-cut-a-stick.cpp -------------------------------------------------------------------------------- /1669-minimum-cost-to-cut-a-stick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1669-minimum-cost-to-cut-a-stick/README.md -------------------------------------------------------------------------------- /1700-minimum-time-to-make-rope-colorful/1700-minimum-time-to-make-rope-colorful.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1700-minimum-time-to-make-rope-colorful/1700-minimum-time-to-make-rope-colorful.cpp -------------------------------------------------------------------------------- /1700-minimum-time-to-make-rope-colorful/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1700-minimum-time-to-make-rope-colorful/README.md -------------------------------------------------------------------------------- /1706-min-cost-to-connect-all-points/1706-min-cost-to-connect-all-points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1706-min-cost-to-connect-all-points/1706-min-cost-to-connect-all-points.cpp -------------------------------------------------------------------------------- /1706-min-cost-to-connect-all-points/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1706-min-cost-to-connect-all-points/README.md -------------------------------------------------------------------------------- /1732-minimum-one-bit-operations-to-make-integers-zero/1732-minimum-one-bit-operations-to-make-integers-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1732-minimum-one-bit-operations-to-make-integers-zero/1732-minimum-one-bit-operations-to-make-integers-zero.cpp -------------------------------------------------------------------------------- /1732-minimum-one-bit-operations-to-make-integers-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1732-minimum-one-bit-operations-to-make-integers-zero/README.md -------------------------------------------------------------------------------- /1737-maximum-nesting-depth-of-the-parentheses/1737-maximum-nesting-depth-of-the-parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1737-maximum-nesting-depth-of-the-parentheses/1737-maximum-nesting-depth-of-the-parentheses.cpp -------------------------------------------------------------------------------- /1737-maximum-nesting-depth-of-the-parentheses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1737-maximum-nesting-depth-of-the-parentheses/README.md -------------------------------------------------------------------------------- /1747-lexicographically-smallest-string-after-applying-operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1747-lexicographically-smallest-string-after-applying-operations/README.md -------------------------------------------------------------------------------- /1753-path-with-minimum-effort/1753-path-with-minimum-effort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1753-path-with-minimum-effort/1753-path-with-minimum-effort.cpp -------------------------------------------------------------------------------- /1753-path-with-minimum-effort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1753-path-with-minimum-effort/README.md -------------------------------------------------------------------------------- /1813-maximum-erasure-value/1813-maximum-erasure-value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1813-maximum-erasure-value/1813-maximum-erasure-value.cpp -------------------------------------------------------------------------------- /1813-maximum-erasure-value/1813-maximum-erasure-value.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1813-maximum-erasure-value/1813-maximum-erasure-value.java -------------------------------------------------------------------------------- /1813-maximum-erasure-value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1813-maximum-erasure-value/README.md -------------------------------------------------------------------------------- /1817-calculate-money-in-leetcode-bank/1817-calculate-money-in-leetcode-bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1817-calculate-money-in-leetcode-bank/1817-calculate-money-in-leetcode-bank.cpp -------------------------------------------------------------------------------- /1817-calculate-money-in-leetcode-bank/1817-calculate-money-in-leetcode-bank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1817-calculate-money-in-leetcode-bank/1817-calculate-money-in-leetcode-bank.java -------------------------------------------------------------------------------- /1817-calculate-money-in-leetcode-bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1817-calculate-money-in-leetcode-bank/README.md -------------------------------------------------------------------------------- /1818-maximum-score-from-removing-substrings/1818-maximum-score-from-removing-substrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1818-maximum-score-from-removing-substrings/1818-maximum-score-from-removing-substrings.cpp -------------------------------------------------------------------------------- /1818-maximum-score-from-removing-substrings/1818-maximum-score-from-removing-substrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1818-maximum-score-from-removing-substrings/1818-maximum-score-from-removing-substrings.java -------------------------------------------------------------------------------- /1818-maximum-score-from-removing-substrings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1818-maximum-score-from-removing-substrings/README.md -------------------------------------------------------------------------------- /1819-construct-the-lexicographically-largest-valid-sequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1819-construct-the-lexicographically-largest-valid-sequence/README.md -------------------------------------------------------------------------------- /1826-maximum-xor-with-an-element-from-array/1826-maximum-xor-with-an-element-from-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1826-maximum-xor-with-an-element-from-array/1826-maximum-xor-with-an-element-from-array.cpp -------------------------------------------------------------------------------- /1826-maximum-xor-with-an-element-from-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1826-maximum-xor-with-an-element-from-array/README.md -------------------------------------------------------------------------------- /1834-minimum-number-of-people-to-teach/1834-minimum-number-of-people-to-teach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1834-minimum-number-of-people-to-teach/1834-minimum-number-of-people-to-teach.cpp -------------------------------------------------------------------------------- /1834-minimum-number-of-people-to-teach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1834-minimum-number-of-people-to-teach/README.md -------------------------------------------------------------------------------- /1851-maximum-number-of-events-that-can-be-attended-ii/1851-maximum-number-of-events-that-can-be-attended-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1851-maximum-number-of-events-that-can-be-attended-ii/1851-maximum-number-of-events-that-can-be-attended-ii.cpp -------------------------------------------------------------------------------- /1851-maximum-number-of-events-that-can-be-attended-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1851-maximum-number-of-events-that-can-be-attended-ii/README.md -------------------------------------------------------------------------------- /1878-check-if-array-is-sorted-and-rotated/1878-check-if-array-is-sorted-and-rotated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1878-check-if-array-is-sorted-and-rotated/1878-check-if-array-is-sorted-and-rotated.cpp -------------------------------------------------------------------------------- /1878-check-if-array-is-sorted-and-rotated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1878-check-if-array-is-sorted-and-rotated/README.md -------------------------------------------------------------------------------- /1915-check-if-one-string-swap-can-make-strings-equal/1915-check-if-one-string-swap-can-make-strings-equal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1915-check-if-one-string-swap-can-make-strings-equal/1915-check-if-one-string-swap-can-make-strings-equal.cpp -------------------------------------------------------------------------------- /1915-check-if-one-string-swap-can-make-strings-equal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1915-check-if-one-string-swap-can-make-strings-equal/README.md -------------------------------------------------------------------------------- /1917-maximum-average-pass-ratio/1917-maximum-average-pass-ratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1917-maximum-average-pass-ratio/1917-maximum-average-pass-ratio.cpp -------------------------------------------------------------------------------- /1917-maximum-average-pass-ratio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1917-maximum-average-pass-ratio/README.md -------------------------------------------------------------------------------- /1925-count-square-sum-triples/1925-count-square-sum-triples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1925-count-square-sum-triples/1925-count-square-sum-triples.cpp -------------------------------------------------------------------------------- /1925-count-square-sum-triples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1925-count-square-sum-triples/README.md -------------------------------------------------------------------------------- /1927-maximum-ascending-subarray-sum/1927-maximum-ascending-subarray-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1927-maximum-ascending-subarray-sum/1927-maximum-ascending-subarray-sum.cpp -------------------------------------------------------------------------------- /1927-maximum-ascending-subarray-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1927-maximum-ascending-subarray-sum/README.md -------------------------------------------------------------------------------- /1930-unique-length-3-palindromic-subsequences/1930-unique-length-3-palindromic-subsequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1930-unique-length-3-palindromic-subsequences/1930-unique-length-3-palindromic-subsequences.cpp -------------------------------------------------------------------------------- /1930-unique-length-3-palindromic-subsequences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1930-unique-length-3-palindromic-subsequences/README.md -------------------------------------------------------------------------------- /1995-finding-pairs-with-a-certain-sum/1995-finding-pairs-with-a-certain-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1995-finding-pairs-with-a-certain-sum/1995-finding-pairs-with-a-certain-sum.cpp -------------------------------------------------------------------------------- /1995-finding-pairs-with-a-certain-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/1995-finding-pairs-with-a-certain-sum/README.md -------------------------------------------------------------------------------- /2021-remove-all-occurrences-of-a-substring/2021-remove-all-occurrences-of-a-substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2021-remove-all-occurrences-of-a-substring/2021-remove-all-occurrences-of-a-substring.cpp -------------------------------------------------------------------------------- /2021-remove-all-occurrences-of-a-substring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2021-remove-all-occurrences-of-a-substring/README.md -------------------------------------------------------------------------------- /2023-design-movie-rental-system/2023-design-movie-rental-system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2023-design-movie-rental-system/2023-design-movie-rental-system.cpp -------------------------------------------------------------------------------- /2023-design-movie-rental-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2023-design-movie-rental-system/README.md -------------------------------------------------------------------------------- /2028-the-earliest-and-latest-rounds-where-players-compete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2028-the-earliest-and-latest-rounds-where-players-compete/README.md -------------------------------------------------------------------------------- /2038-nearest-exit-from-entrance-in-maze/2038-nearest-exit-from-entrance-in-maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2038-nearest-exit-from-entrance-in-maze/2038-nearest-exit-from-entrance-in-maze.cpp -------------------------------------------------------------------------------- /2038-nearest-exit-from-entrance-in-maze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2038-nearest-exit-from-entrance-in-maze/README.md -------------------------------------------------------------------------------- /2050-count-good-numbers/2050-count-good-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2050-count-good-numbers/2050-count-good-numbers.cpp -------------------------------------------------------------------------------- /2050-count-good-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2050-count-good-numbers/README.md -------------------------------------------------------------------------------- /2121-find-if-path-exists-in-graph/2121-find-if-path-exists-in-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2121-find-if-path-exists-in-graph/2121-find-if-path-exists-in-graph.cpp -------------------------------------------------------------------------------- /2121-find-if-path-exists-in-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2121-find-if-path-exists-in-graph/README.md -------------------------------------------------------------------------------- /2137-final-value-of-variable-after-performing-operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2137-final-value-of-variable-after-performing-operations/README.md -------------------------------------------------------------------------------- /2144-maximum-difference-between-increasing-elements/2144-maximum-difference-between-increasing-elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2144-maximum-difference-between-increasing-elements/2144-maximum-difference-between-increasing-elements.cpp -------------------------------------------------------------------------------- /2144-maximum-difference-between-increasing-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2144-maximum-difference-between-increasing-elements/README.md -------------------------------------------------------------------------------- /2150-kth-smallest-product-of-two-sorted-arrays/2150-kth-smallest-product-of-two-sorted-arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2150-kth-smallest-product-of-two-sorted-arrays/2150-kth-smallest-product-of-two-sorted-arrays.cpp -------------------------------------------------------------------------------- /2150-kth-smallest-product-of-two-sorted-arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2150-kth-smallest-product-of-two-sorted-arrays/README.md -------------------------------------------------------------------------------- /2169-simple-bank-system/2169-simple-bank-system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2169-simple-bank-system/2169-simple-bank-system.cpp -------------------------------------------------------------------------------- /2169-simple-bank-system/2169-simple-bank-system.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2169-simple-bank-system/2169-simple-bank-system.java -------------------------------------------------------------------------------- /2169-simple-bank-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2169-simple-bank-system/README.md -------------------------------------------------------------------------------- /2170-count-number-of-maximum-bitwise-or-subsets/2170-count-number-of-maximum-bitwise-or-subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2170-count-number-of-maximum-bitwise-or-subsets/2170-count-number-of-maximum-bitwise-or-subsets.cpp -------------------------------------------------------------------------------- /2170-count-number-of-maximum-bitwise-or-subsets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2170-count-number-of-maximum-bitwise-or-subsets/README.md -------------------------------------------------------------------------------- /2174-next-greater-numerically-balanced-number/2174-next-greater-numerically-balanced-number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2174-next-greater-numerically-balanced-number/2174-next-greater-numerically-balanced-number.java -------------------------------------------------------------------------------- /2174-next-greater-numerically-balanced-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2174-next-greater-numerically-balanced-number/README.md -------------------------------------------------------------------------------- /2202-sum-of-k-mirror-numbers/2202-sum-of-k-mirror-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2202-sum-of-k-mirror-numbers/2202-sum-of-k-mirror-numbers.cpp -------------------------------------------------------------------------------- /2202-sum-of-k-mirror-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2202-sum-of-k-mirror-numbers/README.md -------------------------------------------------------------------------------- /2204-find-subsequence-of-length-k-with-the-largest-sum/2204-find-subsequence-of-length-k-with-the-largest-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2204-find-subsequence-of-length-k-with-the-largest-sum/2204-find-subsequence-of-length-k-with-the-largest-sum.cpp -------------------------------------------------------------------------------- /2204-find-subsequence-of-length-k-with-the-largest-sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2204-find-subsequence-of-length-k-with-the-largest-sum/README.md -------------------------------------------------------------------------------- /2216-delete-the-middle-node-of-a-linked-list/2216-delete-the-middle-node-of-a-linked-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2216-delete-the-middle-node-of-a-linked-list/2216-delete-the-middle-node-of-a-linked-list.cpp -------------------------------------------------------------------------------- /2216-delete-the-middle-node-of-a-linked-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2216-delete-the-middle-node-of-a-linked-list/README.md -------------------------------------------------------------------------------- /2229-maximum-fruits-harvested-after-at-most-k-steps/2229-maximum-fruits-harvested-after-at-most-k-steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2229-maximum-fruits-harvested-after-at-most-k-steps/2229-maximum-fruits-harvested-after-at-most-k-steps.cpp -------------------------------------------------------------------------------- /2229-maximum-fruits-harvested-after-at-most-k-steps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2229-maximum-fruits-harvested-after-at-most-k-steps/README.md -------------------------------------------------------------------------------- /2237-longest-palindrome-by-concatenating-two-letter-words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2237-longest-palindrome-by-concatenating-two-letter-words/README.md -------------------------------------------------------------------------------- /2244-number-of-laser-beams-in-a-bank/2244-number-of-laser-beams-in-a-bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2244-number-of-laser-beams-in-a-bank/2244-number-of-laser-beams-in-a-bank.cpp -------------------------------------------------------------------------------- /2244-number-of-laser-beams-in-a-bank/2244-number-of-laser-beams-in-a-bank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2244-number-of-laser-beams-in-a-bank/2244-number-of-laser-beams-in-a-bank.java -------------------------------------------------------------------------------- /2244-number-of-laser-beams-in-a-bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2244-number-of-laser-beams-in-a-bank/README.md -------------------------------------------------------------------------------- /2254-check-if-every-row-and-column-contains-all-numbers/2254-check-if-every-row-and-column-contains-all-numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2254-check-if-every-row-and-column-contains-all-numbers/2254-check-if-every-row-and-column-contains-all-numbers.cpp -------------------------------------------------------------------------------- /2254-check-if-every-row-and-column-contains-all-numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2254-check-if-every-row-and-column-contains-all-numbers/README.md -------------------------------------------------------------------------------- /2260-divide-a-string-into-groups-of-size-k/2260-divide-a-string-into-groups-of-size-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2260-divide-a-string-into-groups-of-size-k/2260-divide-a-string-into-groups-of-size-k.cpp -------------------------------------------------------------------------------- /2260-divide-a-string-into-groups-of-size-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2260-divide-a-string-into-groups-of-size-k/README.md -------------------------------------------------------------------------------- /2267-minimum-difference-in-sums-after-removal-of-elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2267-minimum-difference-in-sums-after-removal-of-elements/README.md -------------------------------------------------------------------------------- /2274-keep-multiplying-found-values-by-two/2274-keep-multiplying-found-values-by-two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2274-keep-multiplying-found-values-by-two/2274-keep-multiplying-found-values-by-two.cpp -------------------------------------------------------------------------------- /2274-keep-multiplying-found-values-by-two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2274-keep-multiplying-found-values-by-two/README.md -------------------------------------------------------------------------------- /2288-count-operations-to-obtain-zero/2288-count-operations-to-obtain-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2288-count-operations-to-obtain-zero/2288-count-operations-to-obtain-zero.cpp -------------------------------------------------------------------------------- /2288-count-operations-to-obtain-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2288-count-operations-to-obtain-zero/README.md -------------------------------------------------------------------------------- /2307-replace-non-coprime-numbers-in-array/2307-replace-non-coprime-numbers-in-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2307-replace-non-coprime-numbers-in-array/2307-replace-non-coprime-numbers-in-array.cpp -------------------------------------------------------------------------------- /2307-replace-non-coprime-numbers-in-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2307-replace-non-coprime-numbers-in-array/README.md -------------------------------------------------------------------------------- /2316-count-hills-and-valleys-in-an-array/2316-count-hills-and-valleys-in-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2316-count-hills-and-valleys-in-an-array/2316-count-hills-and-valleys-in-an-array.cpp -------------------------------------------------------------------------------- /2316-count-hills-and-valleys-in-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2316-count-hills-and-valleys-in-an-array/README.md -------------------------------------------------------------------------------- /2320-find-all-k-distant-indices-in-an-array/2320-find-all-k-distant-indices-in-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2320-find-all-k-distant-indices-in-an-array/2320-find-all-k-distant-indices-in-an-array.cpp -------------------------------------------------------------------------------- /2320-find-all-k-distant-indices-in-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2320-find-all-k-distant-indices-in-an-array/README.md -------------------------------------------------------------------------------- /2323-minimum-bit-flips-to-convert-number/2323-minimum-bit-flips-to-convert-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2323-minimum-bit-flips-to-convert-number/2323-minimum-bit-flips-to-convert-number.cpp -------------------------------------------------------------------------------- /2323-minimum-bit-flips-to-convert-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2323-minimum-bit-flips-to-convert-number/README.md -------------------------------------------------------------------------------- /2324-find-triangular-sum-of-an-array/2324-find-triangular-sum-of-an-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2324-find-triangular-sum-of-an-array/2324-find-triangular-sum-of-an-array.cpp -------------------------------------------------------------------------------- /2324-find-triangular-sum-of-an-array/2324-find-triangular-sum-of-an-array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2324-find-triangular-sum-of-an-array/2324-find-triangular-sum-of-an-array.java -------------------------------------------------------------------------------- /2324-find-triangular-sum-of-an-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2324-find-triangular-sum-of-an-array/README.md -------------------------------------------------------------------------------- /2346-largest-3-same-digit-number-in-string/2346-largest-3-same-digit-number-in-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2346-largest-3-same-digit-number-in-string/2346-largest-3-same-digit-number-in-string.cpp -------------------------------------------------------------------------------- /2346-largest-3-same-digit-number-in-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2346-largest-3-same-digit-number-in-string/README.md -------------------------------------------------------------------------------- /2350-find-closest-number-to-zero/2350-find-closest-number-to-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2350-find-closest-number-to-zero/2350-find-closest-number-to-zero.cpp -------------------------------------------------------------------------------- /2350-find-closest-number-to-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2350-find-closest-number-to-zero/README.md -------------------------------------------------------------------------------- /2387-partition-array-such-that-maximum-difference-is-k/2387-partition-array-such-that-maximum-difference-is-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2387-partition-array-such-that-maximum-difference-is-k/2387-partition-array-such-that-maximum-difference-is-k.cpp -------------------------------------------------------------------------------- /2387-partition-array-such-that-maximum-difference-is-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2387-partition-array-such-that-maximum-difference-is-k/README.md -------------------------------------------------------------------------------- /2392-successful-pairs-of-spells-and-potions/2392-successful-pairs-of-spells-and-potions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2392-successful-pairs-of-spells-and-potions/2392-successful-pairs-of-spells-and-potions.cpp -------------------------------------------------------------------------------- /2392-successful-pairs-of-spells-and-potions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2392-successful-pairs-of-spells-and-potions/README.md -------------------------------------------------------------------------------- /2395-longest-binary-subsequence-less-than-or-equal-to-k/2395-longest-binary-subsequence-less-than-or-equal-to-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2395-longest-binary-subsequence-less-than-or-equal-to-k/2395-longest-binary-subsequence-less-than-or-equal-to-k.cpp -------------------------------------------------------------------------------- /2395-longest-binary-subsequence-less-than-or-equal-to-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2395-longest-binary-subsequence-less-than-or-equal-to-k/README.md -------------------------------------------------------------------------------- /2400-minimum-score-after-removals-on-a-tree/2400-minimum-score-after-removals-on-a-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2400-minimum-score-after-removals-on-a-tree/2400-minimum-score-after-removals-on-a-tree.cpp -------------------------------------------------------------------------------- /2400-minimum-score-after-removals-on-a-tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2400-minimum-score-after-removals-on-a-tree/README.md -------------------------------------------------------------------------------- /2408-number-of-people-aware-of-a-secret/2408-number-of-people-aware-of-a-secret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2408-number-of-people-aware-of-a-secret/2408-number-of-people-aware-of-a-secret.cpp -------------------------------------------------------------------------------- /2408-number-of-people-aware-of-a-secret/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2408-number-of-people-aware-of-a-secret/README.md -------------------------------------------------------------------------------- /2429-design-a-food-rating-system/2429-design-a-food-rating-system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2429-design-a-food-rating-system/2429-design-a-food-rating-system.cpp -------------------------------------------------------------------------------- /2429-design-a-food-rating-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2429-design-a-food-rating-system/README.md -------------------------------------------------------------------------------- /2432-number-of-zero-filled-subarrays/2432-number-of-zero-filled-subarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2432-number-of-zero-filled-subarrays/2432-number-of-zero-filled-subarrays.cpp -------------------------------------------------------------------------------- /2432-number-of-zero-filled-subarrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2432-number-of-zero-filled-subarrays/README.md -------------------------------------------------------------------------------- /2434-design-a-number-container-system/2434-design-a-number-container-system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2434-design-a-number-container-system/2434-design-a-number-container-system.cpp -------------------------------------------------------------------------------- /2434-design-a-number-container-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2434-design-a-number-container-system/README.md -------------------------------------------------------------------------------- /2435-paths-in-matrix-whose-sum-is-divisible-by-k/2435-paths-in-matrix-whose-sum-is-divisible-by-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2435-paths-in-matrix-whose-sum-is-divisible-by-k/2435-paths-in-matrix-whose-sum-is-divisible-by-k.cpp -------------------------------------------------------------------------------- /2435-paths-in-matrix-whose-sum-is-divisible-by-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2435-paths-in-matrix-whose-sum-is-divisible-by-k/README.md -------------------------------------------------------------------------------- /2438-find-closest-node-to-given-two-nodes/2438-find-closest-node-to-given-two-nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2438-find-closest-node-to-given-two-nodes/2438-find-closest-node-to-given-two-nodes.cpp -------------------------------------------------------------------------------- /2438-find-closest-node-to-given-two-nodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2438-find-closest-node-to-given-two-nodes/README.md -------------------------------------------------------------------------------- /2448-count-number-of-bad-pairs/2448-count-number-of-bad-pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2448-count-number-of-bad-pairs/2448-count-number-of-bad-pairs.cpp -------------------------------------------------------------------------------- /2448-count-number-of-bad-pairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2448-count-number-of-bad-pairs/README.md -------------------------------------------------------------------------------- /2473-max-sum-of-a-pair-with-equal-sum-of-digits/2473-max-sum-of-a-pair-with-equal-sum-of-digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2473-max-sum-of-a-pair-with-equal-sum-of-digits/2473-max-sum-of-a-pair-with-equal-sum-of-digits.cpp -------------------------------------------------------------------------------- /2473-max-sum-of-a-pair-with-equal-sum-of-digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2473-max-sum-of-a-pair-with-equal-sum-of-digits/README.md -------------------------------------------------------------------------------- /2479-meeting-rooms-iii/2479-meeting-rooms-iii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2479-meeting-rooms-iii/2479-meeting-rooms-iii.cpp -------------------------------------------------------------------------------- /2479-meeting-rooms-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2479-meeting-rooms-iii/README.md -------------------------------------------------------------------------------- /2481-strictly-palindromic-number/2481-strictly-palindromic-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2481-strictly-palindromic-number/2481-strictly-palindromic-number.cpp -------------------------------------------------------------------------------- /2481-strictly-palindromic-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2481-strictly-palindromic-number/README.md -------------------------------------------------------------------------------- /2497-maximum-matching-of-players-with-trainers/2497-maximum-matching-of-players-with-trainers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2497-maximum-matching-of-players-with-trainers/2497-maximum-matching-of-players-with-trainers.cpp -------------------------------------------------------------------------------- /2497-maximum-matching-of-players-with-trainers/2497-maximum-matching-of-players-with-trainers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2497-maximum-matching-of-players-with-trainers/2497-maximum-matching-of-players-with-trainers.java -------------------------------------------------------------------------------- /2497-maximum-matching-of-players-with-trainers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2497-maximum-matching-of-players-with-trainers/README.md -------------------------------------------------------------------------------- /2498-smallest-subarrays-with-maximum-bitwise-or/2498-smallest-subarrays-with-maximum-bitwise-or.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2498-smallest-subarrays-with-maximum-bitwise-or/2498-smallest-subarrays-with-maximum-bitwise-or.cpp -------------------------------------------------------------------------------- /2498-smallest-subarrays-with-maximum-bitwise-or/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2498-smallest-subarrays-with-maximum-bitwise-or/README.md -------------------------------------------------------------------------------- /2529-range-product-queries-of-powers/2529-range-product-queries-of-powers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2529-range-product-queries-of-powers/2529-range-product-queries-of-powers.cpp -------------------------------------------------------------------------------- /2529-range-product-queries-of-powers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2529-range-product-queries-of-powers/README.md -------------------------------------------------------------------------------- /2618-maximize-the-minimum-powered-city/2618-maximize-the-minimum-powered-city.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2618-maximize-the-minimum-powered-city/2618-maximize-the-minimum-powered-city.cpp -------------------------------------------------------------------------------- /2618-maximize-the-minimum-powered-city/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2618-maximize-the-minimum-powered-city/README.md -------------------------------------------------------------------------------- /2625-increment-submatrices-by-one/2625-increment-submatrices-by-one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2625-increment-submatrices-by-one/2625-increment-submatrices-by-one.cpp -------------------------------------------------------------------------------- /2625-increment-submatrices-by-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2625-increment-submatrices-by-one/README.md -------------------------------------------------------------------------------- /2661-smallest-missing-non-negative-integer-after-operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2661-smallest-missing-non-negative-integer-after-operations/README.md -------------------------------------------------------------------------------- /2689-rearranging-fruits/2689-rearranging-fruits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2689-rearranging-fruits/2689-rearranging-fruits.cpp -------------------------------------------------------------------------------- /2689-rearranging-fruits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2689-rearranging-fruits/README.md -------------------------------------------------------------------------------- /2704-maximum-difference-by-remapping-a-digit/2704-maximum-difference-by-remapping-a-digit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2704-maximum-difference-by-remapping-a-digit/2704-maximum-difference-by-remapping-a-digit.cpp -------------------------------------------------------------------------------- /2704-maximum-difference-by-remapping-a-digit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2704-maximum-difference-by-remapping-a-digit/README.md -------------------------------------------------------------------------------- /2720-minimize-the-maximum-difference-of-pairs/2720-minimize-the-maximum-difference-of-pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2720-minimize-the-maximum-difference-of-pairs/2720-minimize-the-maximum-difference-of-pairs.cpp -------------------------------------------------------------------------------- /2720-minimize-the-maximum-difference-of-pairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2720-minimize-the-maximum-difference-of-pairs/README.md -------------------------------------------------------------------------------- /2732-counter/2732-counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2732-counter/2732-counter.js -------------------------------------------------------------------------------- /2732-counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2732-counter/README.md -------------------------------------------------------------------------------- /2802-find-the-punishment-number-of-an-integer/2802-find-the-punishment-number-of-an-integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2802-find-the-punishment-number-of-an-integer/2802-find-the-punishment-number-of-an-integer.cpp -------------------------------------------------------------------------------- /2802-find-the-punishment-number-of-an-integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2802-find-the-punishment-number-of-an-integer/README.md -------------------------------------------------------------------------------- /2809-create-hello-world-function/2809-create-hello-world-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2809-create-hello-world-function/2809-create-hello-world-function.js -------------------------------------------------------------------------------- /2809-create-hello-world-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2809-create-hello-world-function/README.md -------------------------------------------------------------------------------- /2837-minimum-operations-to-make-the-integer-zero/2837-minimum-operations-to-make-the-integer-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2837-minimum-operations-to-make-the-integer-zero/2837-minimum-operations-to-make-the-integer-zero.cpp -------------------------------------------------------------------------------- /2837-minimum-operations-to-make-the-integer-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2837-minimum-operations-to-make-the-integer-zero/README.md -------------------------------------------------------------------------------- /2882-ways-to-express-an-integer-as-sum-of-powers/2882-ways-to-express-an-integer-as-sum-of-powers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2882-ways-to-express-an-integer-as-sum-of-powers/2882-ways-to-express-an-integer-as-sum-of-powers.cpp -------------------------------------------------------------------------------- /2882-ways-to-express-an-integer-as-sum-of-powers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2882-ways-to-express-an-integer-as-sum-of-powers/README.md -------------------------------------------------------------------------------- /2887-sort-vowels-in-a-string/2887-sort-vowels-in-a-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2887-sort-vowels-in-a-string/2887-sort-vowels-in-a-string.cpp -------------------------------------------------------------------------------- /2887-sort-vowels-in-a-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/2887-sort-vowels-in-a-string/README.md -------------------------------------------------------------------------------- /3172-divisible-and-non-divisible-sums-difference/3172-divisible-and-non-divisible-sums-difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3172-divisible-and-non-divisible-sums-difference/3172-divisible-and-non-divisible-sums-difference.cpp -------------------------------------------------------------------------------- /3172-divisible-and-non-divisible-sums-difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3172-divisible-and-non-divisible-sums-difference/README.md -------------------------------------------------------------------------------- /3181-find-building-where-alice-and-bob-can-meet/3181-find-building-where-alice-and-bob-can-meet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3181-find-building-where-alice-and-bob-can-meet/3181-find-building-where-alice-and-bob-can-meet.cpp -------------------------------------------------------------------------------- /3181-find-building-where-alice-and-bob-can-meet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3181-find-building-where-alice-and-bob-can-meet/README.md -------------------------------------------------------------------------------- /3190-find-minimum-operations-to-make-all-elements-divisible-by-three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3190-find-minimum-operations-to-make-all-elements-divisible-by-three/README.md -------------------------------------------------------------------------------- /3194-find-words-containing-character/3194-find-words-containing-character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3194-find-words-containing-character/3194-find-words-containing-character.cpp -------------------------------------------------------------------------------- /3194-find-words-containing-character/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3194-find-words-containing-character/README.md -------------------------------------------------------------------------------- /3201-distribute-candies-among-children-ii/3201-distribute-candies-among-children-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3201-distribute-candies-among-children-ii/3201-distribute-candies-among-children-ii.cpp -------------------------------------------------------------------------------- /3201-distribute-candies-among-children-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3201-distribute-candies-among-children-ii/README.md -------------------------------------------------------------------------------- /3233-maximize-the-number-of-partitions-after-operations/3233-maximize-the-number-of-partitions-after-operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3233-maximize-the-number-of-partitions-after-operations/3233-maximize-the-number-of-partitions-after-operations.cpp -------------------------------------------------------------------------------- /3233-maximize-the-number-of-partitions-after-operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3233-maximize-the-number-of-partitions-after-operations/README.md -------------------------------------------------------------------------------- /3241-divide-array-into-arrays-with-max-difference/3241-divide-array-into-arrays-with-max-difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3241-divide-array-into-arrays-with-max-difference/3241-divide-array-into-arrays-with-max-difference.cpp -------------------------------------------------------------------------------- /3241-divide-array-into-arrays-with-max-difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3241-divide-array-into-arrays-with-max-difference/README.md -------------------------------------------------------------------------------- /3242-count-elements-with-maximum-frequency/3242-count-elements-with-maximum-frequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3242-count-elements-with-maximum-frequency/3242-count-elements-with-maximum-frequency.cpp -------------------------------------------------------------------------------- /3242-count-elements-with-maximum-frequency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3242-count-elements-with-maximum-frequency/README.md -------------------------------------------------------------------------------- /3251-maximum-area-of-longest-diagonal-rectangle/3251-maximum-area-of-longest-diagonal-rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3251-maximum-area-of-longest-diagonal-rectangle/3251-maximum-area-of-longest-diagonal-rectangle.cpp -------------------------------------------------------------------------------- /3251-maximum-area-of-longest-diagonal-rectangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3251-maximum-area-of-longest-diagonal-rectangle/README.md -------------------------------------------------------------------------------- /3277-find-the-number-of-ways-to-place-people-ii/3277-find-the-number-of-ways-to-place-people-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3277-find-the-number-of-ways-to-place-people-ii/3277-find-the-number-of-ways-to-place-people-ii.cpp -------------------------------------------------------------------------------- /3277-find-the-number-of-ways-to-place-people-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3277-find-the-number-of-ways-to-place-people-ii/README.md -------------------------------------------------------------------------------- /3278-find-the-number-of-ways-to-place-people-i/3278-find-the-number-of-ways-to-place-people-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3278-find-the-number-of-ways-to-place-people-i/3278-find-the-number-of-ways-to-place-people-i.cpp -------------------------------------------------------------------------------- /3278-find-the-number-of-ways-to-place-people-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3278-find-the-number-of-ways-to-place-people-i/README.md -------------------------------------------------------------------------------- /3321-type-of-triangle/3321-type-of-triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3321-type-of-triangle/3321-type-of-triangle.cpp -------------------------------------------------------------------------------- /3321-type-of-triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3321-type-of-triangle/README.md -------------------------------------------------------------------------------- /3332-minimum-operations-to-exceed-threshold-value-ii/3332-minimum-operations-to-exceed-threshold-value-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3332-minimum-operations-to-exceed-threshold-value-ii/3332-minimum-operations-to-exceed-threshold-value-ii.cpp -------------------------------------------------------------------------------- /3332-minimum-operations-to-exceed-threshold-value-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3332-minimum-operations-to-exceed-threshold-value-ii/README.md -------------------------------------------------------------------------------- /3336-water-bottles-ii/3336-water-bottles-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3336-water-bottles-ii/3336-water-bottles-ii.cpp -------------------------------------------------------------------------------- /3336-water-bottles-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3336-water-bottles-ii/README.md -------------------------------------------------------------------------------- /3360-minimum-deletions-to-make-string-k-special/3360-minimum-deletions-to-make-string-k-special.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3360-minimum-deletions-to-make-string-k-special/3360-minimum-deletions-to-make-string-k-special.cpp -------------------------------------------------------------------------------- /3360-minimum-deletions-to-make-string-k-special/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3360-minimum-deletions-to-make-string-k-special/README.md -------------------------------------------------------------------------------- /3372-longest-strictly-increasing-or-strictly-decreasing-subarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3372-longest-strictly-increasing-or-strictly-decreasing-subarray/README.md -------------------------------------------------------------------------------- /3381-maximum-subarray-sum-with-length-divisible-by-k/3381-maximum-subarray-sum-with-length-divisible-by-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3381-maximum-subarray-sum-with-length-divisible-by-k/3381-maximum-subarray-sum-with-length-divisible-by-k.cpp -------------------------------------------------------------------------------- /3381-maximum-subarray-sum-with-length-divisible-by-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3381-maximum-subarray-sum-with-length-divisible-by-k/README.md -------------------------------------------------------------------------------- /3383-taking-maximum-energy-from-the-mystic-dungeon/3383-taking-maximum-energy-from-the-mystic-dungeon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3383-taking-maximum-energy-from-the-mystic-dungeon/3383-taking-maximum-energy-from-the-mystic-dungeon.cpp -------------------------------------------------------------------------------- /3383-taking-maximum-energy-from-the-mystic-dungeon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3383-taking-maximum-energy-from-the-mystic-dungeon/README.md -------------------------------------------------------------------------------- /3396-valid-word/3396-valid-word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3396-valid-word/3396-valid-word.cpp -------------------------------------------------------------------------------- /3396-valid-word/3396-valid-word.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3396-valid-word/3396-valid-word.java -------------------------------------------------------------------------------- /3396-valid-word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3396-valid-word/README.md -------------------------------------------------------------------------------- /3432-count-partitions-with-even-sum-difference/3432-count-partitions-with-even-sum-difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3432-count-partitions-with-even-sum-difference/3432-count-partitions-with-even-sum-difference.cpp -------------------------------------------------------------------------------- /3432-count-partitions-with-even-sum-difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3432-count-partitions-with-even-sum-difference/README.md -------------------------------------------------------------------------------- /3434-find-the-number-of-distinct-colors-among-the-balls/3434-find-the-number-of-distinct-colors-among-the-balls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3434-find-the-number-of-distinct-colors-among-the-balls/3434-find-the-number-of-distinct-colors-among-the-balls.cpp -------------------------------------------------------------------------------- /3434-find-the-number-of-distinct-colors-among-the-balls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3434-find-the-number-of-distinct-colors-among-the-balls/README.md -------------------------------------------------------------------------------- /3437-maximum-total-damage-with-spell-casting/3437-maximum-total-damage-with-spell-casting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3437-maximum-total-damage-with-spell-casting/3437-maximum-total-damage-with-spell-casting.cpp -------------------------------------------------------------------------------- /3437-maximum-total-damage-with-spell-casting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3437-maximum-total-damage-with-spell-casting/README.md -------------------------------------------------------------------------------- /3445-lexicographically-minimum-string-after-removing-stars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3445-lexicographically-minimum-string-after-removing-stars/README.md -------------------------------------------------------------------------------- /3447-clear-digits/3447-clear-digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3447-clear-digits/3447-clear-digits.cpp -------------------------------------------------------------------------------- /3447-clear-digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3447-clear-digits/README.md -------------------------------------------------------------------------------- /3459-find-the-minimum-area-to-cover-all-ones-ii/3459-find-the-minimum-area-to-cover-all-ones-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3459-find-the-minimum-area-to-cover-all-ones-ii/3459-find-the-minimum-area-to-cover-all-ones-ii.cpp -------------------------------------------------------------------------------- /3459-find-the-minimum-area-to-cover-all-ones-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3459-find-the-minimum-area-to-cover-all-ones-ii/README.md -------------------------------------------------------------------------------- /3461-find-the-minimum-area-to-cover-all-ones-i/3461-find-the-minimum-area-to-cover-all-ones-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3461-find-the-minimum-area-to-cover-all-ones-i/3461-find-the-minimum-area-to-cover-all-ones-i.cpp -------------------------------------------------------------------------------- /3461-find-the-minimum-area-to-cover-all-ones-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3461-find-the-minimum-area-to-cover-all-ones-i/README.md -------------------------------------------------------------------------------- /3462-vowels-game-in-a-string/3462-vowels-game-in-a-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3462-vowels-game-in-a-string/3462-vowels-game-in-a-string.cpp -------------------------------------------------------------------------------- /3462-vowels-game-in-a-string/3462-vowels-game-in-a-string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3462-vowels-game-in-a-string/3462-vowels-game-in-a-string.java -------------------------------------------------------------------------------- /3462-vowels-game-in-a-string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3462-vowels-game-in-a-string/README.md -------------------------------------------------------------------------------- /3490-find-the-maximum-length-of-valid-subsequence-i/3490-find-the-maximum-length-of-valid-subsequence-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3490-find-the-maximum-length-of-valid-subsequence-i/3490-find-the-maximum-length-of-valid-subsequence-i.cpp -------------------------------------------------------------------------------- /3490-find-the-maximum-length-of-valid-subsequence-i/3490-find-the-maximum-length-of-valid-subsequence-i.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3490-find-the-maximum-length-of-valid-subsequence-i/3490-find-the-maximum-length-of-valid-subsequence-i.java -------------------------------------------------------------------------------- /3490-find-the-maximum-length-of-valid-subsequence-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3490-find-the-maximum-length-of-valid-subsequence-i/README.md -------------------------------------------------------------------------------- /3491-find-the-maximum-length-of-valid-subsequence-ii/3491-find-the-maximum-length-of-valid-subsequence-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3491-find-the-maximum-length-of-valid-subsequence-ii/3491-find-the-maximum-length-of-valid-subsequence-ii.cpp -------------------------------------------------------------------------------- /3491-find-the-maximum-length-of-valid-subsequence-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3491-find-the-maximum-length-of-valid-subsequence-ii/README.md -------------------------------------------------------------------------------- /3493-maximum-number-of-operations-to-move-ones-to-the-end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3493-maximum-number-of-operations-to-move-ones-to-the-end/README.md -------------------------------------------------------------------------------- /3578-count-partitions-with-max-min-difference-at-most-k/3578-count-partitions-with-max-min-difference-at-most-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3578-count-partitions-with-max-min-difference-at-most-k/3578-count-partitions-with-max-min-difference-at-most-k.cpp -------------------------------------------------------------------------------- /3578-count-partitions-with-max-min-difference-at-most-k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3578-count-partitions-with-max-min-difference-at-most-k/README.md -------------------------------------------------------------------------------- /3581-the-two-sneaky-numbers-of-digitville/3581-the-two-sneaky-numbers-of-digitville.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3581-the-two-sneaky-numbers-of-digitville/3581-the-two-sneaky-numbers-of-digitville.cpp -------------------------------------------------------------------------------- /3581-the-two-sneaky-numbers-of-digitville/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3581-the-two-sneaky-numbers-of-digitville/README.md -------------------------------------------------------------------------------- /3583-count-special-triplets/3583-count-special-triplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3583-count-special-triplets/3583-count-special-triplets.cpp -------------------------------------------------------------------------------- /3583-count-special-triplets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3583-count-special-triplets/README.md -------------------------------------------------------------------------------- /3592-find-x-sum-of-all-k-long-subarrays-ii/3592-find-x-sum-of-all-k-long-subarrays-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3592-find-x-sum-of-all-k-long-subarrays-ii/3592-find-x-sum-of-all-k-long-subarrays-ii.cpp -------------------------------------------------------------------------------- /3592-find-x-sum-of-all-k-long-subarrays-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3592-find-x-sum-of-all-k-long-subarrays-ii/README.md -------------------------------------------------------------------------------- /3600-find-the-k-th-character-in-string-game-i/3600-find-the-k-th-character-in-string-game-i.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3600-find-the-k-th-character-in-string-game-i/3600-find-the-k-th-character-in-string-game-i.java -------------------------------------------------------------------------------- /3600-find-the-k-th-character-in-string-game-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3600-find-the-k-th-character-in-string-game-i/README.md -------------------------------------------------------------------------------- /3601-find-the-k-th-character-in-string-game-ii/3601-find-the-k-th-character-in-string-game-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3601-find-the-k-th-character-in-string-game-ii/3601-find-the-k-th-character-in-string-game-ii.cpp -------------------------------------------------------------------------------- /3601-find-the-k-th-character-in-string-game-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3601-find-the-k-th-character-in-string-game-ii/README.md -------------------------------------------------------------------------------- /3610-find-x-sum-of-all-k-long-subarrays-i/3610-find-x-sum-of-all-k-long-subarrays-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3610-find-x-sum-of-all-k-long-subarrays-i/3610-find-x-sum-of-all-k-long-subarrays-i.cpp -------------------------------------------------------------------------------- /3610-find-x-sum-of-all-k-long-subarrays-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3610-find-x-sum-of-all-k-long-subarrays-i/README.md -------------------------------------------------------------------------------- /3612-adjacent-increasing-subarrays-detection-i/3612-adjacent-increasing-subarrays-detection-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3612-adjacent-increasing-subarrays-detection-i/3612-adjacent-increasing-subarrays-detection-i.cpp -------------------------------------------------------------------------------- /3612-adjacent-increasing-subarrays-detection-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3612-adjacent-increasing-subarrays-detection-i/README.md -------------------------------------------------------------------------------- /3616-make-array-elements-equal-to-zero/3616-make-array-elements-equal-to-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3616-make-array-elements-equal-to-zero/3616-make-array-elements-equal-to-zero.cpp -------------------------------------------------------------------------------- /3616-make-array-elements-equal-to-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3616-make-array-elements-equal-to-zero/README.md -------------------------------------------------------------------------------- /3617-find-the-original-typed-string-i/3617-find-the-original-typed-string-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3617-find-the-original-typed-string-i/3617-find-the-original-typed-string-i.cpp -------------------------------------------------------------------------------- /3617-find-the-original-typed-string-i/3617-find-the-original-typed-string-i.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3617-find-the-original-typed-string-i/3617-find-the-original-typed-string-i.java -------------------------------------------------------------------------------- /3617-find-the-original-typed-string-i/3617-find-the-original-typed-string-i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3617-find-the-original-typed-string-i/3617-find-the-original-typed-string-i.py -------------------------------------------------------------------------------- /3617-find-the-original-typed-string-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3617-find-the-original-typed-string-i/README.md -------------------------------------------------------------------------------- /3618-find-the-original-typed-string-ii/3618-find-the-original-typed-string-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3618-find-the-original-typed-string-ii/3618-find-the-original-typed-string-ii.cpp -------------------------------------------------------------------------------- /3618-find-the-original-typed-string-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3618-find-the-original-typed-string-ii/README.md -------------------------------------------------------------------------------- /3619-adjacent-increasing-subarrays-detection-ii/3619-adjacent-increasing-subarrays-detection-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3619-adjacent-increasing-subarrays-detection-ii/3619-adjacent-increasing-subarrays-detection-ii.cpp -------------------------------------------------------------------------------- /3619-adjacent-increasing-subarrays-detection-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3619-adjacent-increasing-subarrays-detection-ii/README.md -------------------------------------------------------------------------------- /3620-maximum-number-of-distinct-elements-after-operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3620-maximum-number-of-distinct-elements-after-operations/README.md -------------------------------------------------------------------------------- /3623-count-number-of-trapezoids-i/3623-count-number-of-trapezoids-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3623-count-number-of-trapezoids-i/3623-count-number-of-trapezoids-i.cpp -------------------------------------------------------------------------------- /3623-count-number-of-trapezoids-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3623-count-number-of-trapezoids-i/README.md -------------------------------------------------------------------------------- /3627-find-minimum-time-to-reach-last-room-i/3627-find-minimum-time-to-reach-last-room-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3627-find-minimum-time-to-reach-last-room-i/3627-find-minimum-time-to-reach-last-room-i.cpp -------------------------------------------------------------------------------- /3627-find-minimum-time-to-reach-last-room-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3627-find-minimum-time-to-reach-last-room-i/README.md -------------------------------------------------------------------------------- /3633-maximize-the-number-of-target-nodes-after-connecting-trees-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3633-maximize-the-number-of-target-nodes-after-connecting-trees-i/README.md -------------------------------------------------------------------------------- /3645-maximize-the-number-of-target-nodes-after-connecting-trees-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3645-maximize-the-number-of-target-nodes-after-connecting-trees-ii/README.md -------------------------------------------------------------------------------- /3648-find-the-maximum-number-of-fruits-collected/3648-find-the-maximum-number-of-fruits-collected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3648-find-the-maximum-number-of-fruits-collected/3648-find-the-maximum-number-of-fruits-collected.cpp -------------------------------------------------------------------------------- /3648-find-the-maximum-number-of-fruits-collected/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3648-find-the-maximum-number-of-fruits-collected/README.md -------------------------------------------------------------------------------- /3676-smallest-number-with-all-set-bits/3676-smallest-number-with-all-set-bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3676-smallest-number-with-all-set-bits/3676-smallest-number-with-all-set-bits.cpp -------------------------------------------------------------------------------- /3676-smallest-number-with-all-set-bits/3676-smallest-number-with-all-set-bits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3676-smallest-number-with-all-set-bits/3676-smallest-number-with-all-set-bits.java -------------------------------------------------------------------------------- /3676-smallest-number-with-all-set-bits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3676-smallest-number-with-all-set-bits/README.md -------------------------------------------------------------------------------- /3678-design-task-manager/3678-design-task-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3678-design-task-manager/3678-design-task-manager.cpp -------------------------------------------------------------------------------- /3678-design-task-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3678-design-task-manager/README.md -------------------------------------------------------------------------------- /3683-find-the-lexicographically-largest-string-from-the-box-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3683-find-the-lexicographically-largest-string-from-the-box-i/README.md -------------------------------------------------------------------------------- /3733-length-of-longest-v-shaped-diagonal-segment/3733-length-of-longest-v-shaped-diagonal-segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3733-length-of-longest-v-shaped-diagonal-segment/3733-length-of-longest-v-shaped-diagonal-segment.cpp -------------------------------------------------------------------------------- /3733-length-of-longest-v-shaped-diagonal-segment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3733-length-of-longest-v-shaped-diagonal-segment/README.md -------------------------------------------------------------------------------- /3741-reschedule-meetings-for-maximum-free-time-ii/3741-reschedule-meetings-for-maximum-free-time-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3741-reschedule-meetings-for-maximum-free-time-ii/3741-reschedule-meetings-for-maximum-free-time-ii.cpp -------------------------------------------------------------------------------- /3741-reschedule-meetings-for-maximum-free-time-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3741-reschedule-meetings-for-maximum-free-time-ii/README.md -------------------------------------------------------------------------------- /3743-reschedule-meetings-for-maximum-free-time-i/3743-reschedule-meetings-for-maximum-free-time-i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3743-reschedule-meetings-for-maximum-free-time-i/3743-reschedule-meetings-for-maximum-free-time-i.cpp -------------------------------------------------------------------------------- /3743-reschedule-meetings-for-maximum-free-time-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3743-reschedule-meetings-for-maximum-free-time-i/README.md -------------------------------------------------------------------------------- /3744-minimum-operations-to-make-array-elements-zero/3744-minimum-operations-to-make-array-elements-zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3744-minimum-operations-to-make-array-elements-zero/3744-minimum-operations-to-make-array-elements-zero.cpp -------------------------------------------------------------------------------- /3744-minimum-operations-to-make-array-elements-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3744-minimum-operations-to-make-array-elements-zero/README.md -------------------------------------------------------------------------------- /3747-maximum-difference-between-adjacent-elements-in-a-circular-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3747-maximum-difference-between-adjacent-elements-in-a-circular-array/README.md -------------------------------------------------------------------------------- /3748-sort-matrix-by-diagonals/3748-sort-matrix-by-diagonals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3748-sort-matrix-by-diagonals/3748-sort-matrix-by-diagonals.cpp -------------------------------------------------------------------------------- /3748-sort-matrix-by-diagonals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3748-sort-matrix-by-diagonals/README.md -------------------------------------------------------------------------------- /3753-maximum-difference-between-even-and-odd-frequency-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3753-maximum-difference-between-even-and-odd-frequency-i/README.md -------------------------------------------------------------------------------- /3754-maximum-manhattan-distance-after-k-changes/3754-maximum-manhattan-distance-after-k-changes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3754-maximum-manhattan-distance-after-k-changes/3754-maximum-manhattan-distance-after-k-changes.cpp -------------------------------------------------------------------------------- /3754-maximum-manhattan-distance-after-k-changes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3754-maximum-manhattan-distance-after-k-changes/README.md -------------------------------------------------------------------------------- /3761-maximum-difference-between-even-and-odd-frequency-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3761-maximum-difference-between-even-and-odd-frequency-ii/README.md -------------------------------------------------------------------------------- /3768-check-if-digits-are-equal-in-string-after-operations-i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3768-check-if-digits-are-equal-in-string-after-operations-i/README.md -------------------------------------------------------------------------------- /3788-maximum-unique-subarray-sum-after-deletion/3788-maximum-unique-subarray-sum-after-deletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3788-maximum-unique-subarray-sum-after-deletion/3788-maximum-unique-subarray-sum-after-deletion.cpp -------------------------------------------------------------------------------- /3788-maximum-unique-subarray-sum-after-deletion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3788-maximum-unique-subarray-sum-after-deletion/README.md -------------------------------------------------------------------------------- /3789-maximize-subarrays-after-removing-one-conflicting-pair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3789-maximize-subarrays-after-removing-one-conflicting-pair/README.md -------------------------------------------------------------------------------- /3790-fruits-into-baskets-ii/3790-fruits-into-baskets-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3790-fruits-into-baskets-ii/3790-fruits-into-baskets-ii.cpp -------------------------------------------------------------------------------- /3790-fruits-into-baskets-ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3790-fruits-into-baskets-ii/README.md -------------------------------------------------------------------------------- /3791-fruits-into-baskets-iii/3791-fruits-into-baskets-iii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3791-fruits-into-baskets-iii/3791-fruits-into-baskets-iii.cpp -------------------------------------------------------------------------------- /3791-fruits-into-baskets-iii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3791-fruits-into-baskets-iii/README.md -------------------------------------------------------------------------------- /3794-find-the-minimum-amount-of-time-to-brew-potions/3794-find-the-minimum-amount-of-time-to-brew-potions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3794-find-the-minimum-amount-of-time-to-brew-potions/3794-find-the-minimum-amount-of-time-to-brew-potions.cpp -------------------------------------------------------------------------------- /3794-find-the-minimum-amount-of-time-to-brew-potions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3794-find-the-minimum-amount-of-time-to-brew-potions/README.md -------------------------------------------------------------------------------- /3797-design-spreadsheet/3797-design-spreadsheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3797-design-spreadsheet/3797-design-spreadsheet.cpp -------------------------------------------------------------------------------- /3797-design-spreadsheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3797-design-spreadsheet/README.md -------------------------------------------------------------------------------- /3827-implement-router/3827-implement-router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3827-implement-router/3827-implement-router.cpp -------------------------------------------------------------------------------- /3827-implement-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3827-implement-router/README.md -------------------------------------------------------------------------------- /3830-find-closest-person/3830-find-closest-person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3830-find-closest-person/3830-find-closest-person.cpp -------------------------------------------------------------------------------- /3830-find-closest-person/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3830-find-closest-person/README.md -------------------------------------------------------------------------------- /3834-minimum-operations-to-convert-all-elements-to-zero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3834-minimum-operations-to-convert-all-elements-to-zero/README.md -------------------------------------------------------------------------------- /3851-find-sum-of-array-product-of-magical-sequences/3851-find-sum-of-array-product-of-magical-sequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3851-find-sum-of-array-product-of-magical-sequences/3851-find-sum-of-array-product-of-magical-sequences.cpp -------------------------------------------------------------------------------- /3851-find-sum-of-array-product-of-magical-sequences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3851-find-sum-of-array-product-of-magical-sequences/README.md -------------------------------------------------------------------------------- /3863-power-grid-maintenance/3863-power-grid-maintenance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3863-power-grid-maintenance/3863-power-grid-maintenance.cpp -------------------------------------------------------------------------------- /3863-power-grid-maintenance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3863-power-grid-maintenance/README.md -------------------------------------------------------------------------------- /3872-find-most-frequent-vowel-and-consonant/3872-find-most-frequent-vowel-and-consonant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3872-find-most-frequent-vowel-and-consonant/3872-find-most-frequent-vowel-and-consonant.cpp -------------------------------------------------------------------------------- /3872-find-most-frequent-vowel-and-consonant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/3872-find-most-frequent-vowel-and-consonant/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/README.md -------------------------------------------------------------------------------- /stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceeyyy/DSA_Answers/HEAD/stats.json --------------------------------------------------------------------------------