Skip to content

Commit 5fbb791

Browse files
committed
update readme
1 parent bae1876 commit 5fbb791

15 files changed

+10
-87
lines changed

.github/test.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
3779-minimum-number-of-operations-to-have-distinct-elements python medium
2-
3780-maximum-sum-of-three-numbers-divisible-by-three python medium
3-
3781-maximum-score-after-binary-swaps python medium
1+
0955-delete-columns-to-make-sorted-ii python medium
2+
0960-delete-columns-to-make-sorted-iii python hard
3+
3783-mirror-distance-of-an-integer python easy
4+
3784-minimum-deletion-cost-to-make-all-characters-equal python medium
5+
3785-minimum-swaps-to-avoid-forbidden-values python hard

0549-binary-tree-longest-consecutive-sequence-ii/0549-binary-tree-longest-consecutive-sequence-ii.py

Lines changed: 0 additions & 50 deletions
This file was deleted.

0955-delete-columns-to-make-sorted-ii/0955-delete-columns-to-make-sorted-ii.py renamed to Python/0955-delete-columns-to-make-sorted-ii.py

File renamed without changes.

0960-delete-columns-to-make-sorted-iii/0960-delete-columns-to-make-sorted-iii.py renamed to Python/0960-delete-columns-to-make-sorted-iii.py

File renamed without changes.

3783-mirror-distance-of-an-integer/3783-mirror-distance-of-an-integer.py renamed to Python/3783-mirror-distance-of-an-integer.py

File renamed without changes.

3784-minimum-deletion-cost-to-make-all-characters-equal/3784-minimum-deletion-cost-to-make-all-characters-equal.py renamed to Python/3784-minimum-deletion-cost-to-make-all-characters-equal.py

File renamed without changes.

3785-minimum-swaps-to-avoid-forbidden-values/3785-minimum-swaps-to-avoid-forbidden-values.py renamed to Python/3785-minimum-swaps-to-avoid-forbidden-values.py

File renamed without changes.

Question_List_0001_1000.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,10 @@
593593
| 0950 | [Reveal Cards In Increasing Order](https://leetcode.com/problems/reveal-cards-in-increasing-order/) | [Python](./Python/0950-reveal-cards-in-increasing-order.py) | [Medium](./Readme/0950-reveal-cards-in-increasing-order.md) |
594594
| 0951 | [Flip Equivalent Binary Trees](https://leetcode.com/problems/flip-equivalent-binary-trees) | [Python](./Python/0951-flip-equivalent-binary-trees.py) | [Medium](./Readme/0951-flip-equivalent-binary-trees.md) |
595595
| 0954 | [Array of Doubled Pairs](https://leetcode.com/problems/array-of-doubled-pairs/) | [Python](./Python/0954-array-of-doubled-pairs.py) | [Medium](./Readme/0954-array-of-doubled-pairs.md) |
596+
| 0955 | [Delete Columns to Make Sorted II](https://leetcode.com/problems/delete-columns-to-make-sorted-ii/) | [Python](./Python/0955-delete-columns-to-make-sorted-ii.py) | [Medium](./Readme/0955-delete-columns-to-make-sorted-ii.md) |
596597
| 0958 | [Check Completeness of a Binary Tree](https://leetcode.com/problems/check-completeness-of-a-binary-tree) | [Python](./Python/0958-check-completeness-of-a-binary-tree.py) | [Medium](./Readme/0958-check-completeness-of-a-binary-tree.md) |
597598
| 0959 | [Regions Cut By Slashes](https://leetcode.com/problems/regions-cut-by-slashes/) | [Python](./Python/0959-regions-cut-by-slashes.py) | [Medium](./Readme/0959-regions-cut-by-slashes.md) |
599+
| 0960 | [Delete Columns to Make Sorted III](https://leetcode.com/problems/delete-columns-to-make-sorted-iii/) | [Python](./Python/0960-delete-columns-to-make-sorted-iii.py) | [Hard](./Readme/0960-delete-columns-to-make-sorted-iii.md) |
598600
| 0962 | [Maximum Width Ramp](https://leetcode.com/problems/maximum-width-ramp/) | [Python](./Python/0962-maximum-width-ramp.py) | [Medium](./Readme/0962-maximum-width-ramp.md) |
599601
| 0966 | [Vowel Spellchecker](https://leetcode.com/problems/vowel-spellchecker/) | [Python](./Python/0966-vowel-spellchecker.py) | [Medium](./Readme/0966-vowel-spellchecker.md) |
600602
| 0967 | [Numbers With Same Consecutive Differences](https://leetcode.com/problems/numbers-with-same-consecutive-differences) | [Python](./Python/0967-numbers-with-same-consecutive-differences.py) | [Medium](./Readme/0967-numbers-with-same-consecutive-differences.md) |

Question_List_3001_4000.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,3 +322,6 @@
322322
| 3779 | [Minimum Number of Operations to Have Distinct Elements](https://leetcode.com/problems/minimum-number-of-operations-to-have-distinct-elements) | [Python](./Python/3779-minimum-number-of-operations-to-have-distinct-elements.py) | [Medium](./Readme/3779-minimum-number-of-operations-to-have-distinct-elements.md) |
323323
| 3780 | [Maximum Sum of Three Numbers Divisible by Three](https://leetcode.com/problems/maximum-sum-of-three-numbers-divisible-by-three) | [Python](./Python/3780-maximum-sum-of-three-numbers-divisible-by-three.py) | [Medium](./Readme/3780-maximum-sum-of-three-numbers-divisible-by-three.md) |
324324
| 3781 | [Maximum Score After Binary Swaps](https://leetcode.com/problems/maximum-score-after-binary-swaps) | [Python](./Python/3781-maximum-score-after-binary-swaps.py) | [Medium](./Readme/3781-maximum-score-after-binary-swaps.md) |
325+
| 3783 | [Mirror Distance of an Integer](https://leetcode.com/problems/mirror-distance-of-an-integer) | [Python](./Python/3783-mirror-distance-of-an-integer.py) | [Easy](./Readme/3783-mirror-distance-of-an-integer.md) |
326+
| 3784 | [Minimum Deletion Cost to Make All Characters Equal](https://leetcode.com/problems/minimum-deletion-cost-to-make-all-characters-equal) | [Python](./Python/3784-minimum-deletion-cost-to-make-all-characters-equal.py) | [Medium](./Readme/3784-minimum-deletion-cost-to-make-all-characters-equal.md) |
327+
| 3785 | [Minimum Swaps to Avoid Forbidden Values](https://leetcode.com/problems/minimum-swaps-to-avoid-forbidden-values) | [Python](./Python/3785-minimum-swaps-to-avoid-forbidden-values.py) | [Hard](./Readme/3785-minimum-swaps-to-avoid-forbidden-values.md) |

README.md

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -115,37 +115,3 @@ It helps others discover the repo and keeps the project growing.
115115
---
116116

117117
Feedback / Questions → open an Issue or reach out on [LinkedIn](https://www.linkedin.com/in/hogan-l/)
118-
119-
<!---LeetCode Topics Start-->
120-
# LeetCode Topics
121-
## Tree
122-
| |
123-
| ------- |
124-
| [0549-binary-tree-longest-consecutive-sequence-ii](https://github.com/hogan-tech/leetcode-solution/tree/master/0549-binary-tree-longest-consecutive-sequence-ii) |
125-
## Depth-First Search
126-
| |
127-
| ------- |
128-
| [0549-binary-tree-longest-consecutive-sequence-ii](https://github.com/hogan-tech/leetcode-solution/tree/master/0549-binary-tree-longest-consecutive-sequence-ii) |
129-
## Binary Tree
130-
| |
131-
| ------- |
132-
| [0549-binary-tree-longest-consecutive-sequence-ii](https://github.com/hogan-tech/leetcode-solution/tree/master/0549-binary-tree-longest-consecutive-sequence-ii) |
133-
## Array
134-
| |
135-
| ------- |
136-
| [0955-delete-columns-to-make-sorted-ii](https://github.com/hogan-tech/leetcode-solution/tree/master/0955-delete-columns-to-make-sorted-ii) |
137-
| [0960-delete-columns-to-make-sorted-iii](https://github.com/hogan-tech/leetcode-solution/tree/master/0960-delete-columns-to-make-sorted-iii) |
138-
## String
139-
| |
140-
| ------- |
141-
| [0955-delete-columns-to-make-sorted-ii](https://github.com/hogan-tech/leetcode-solution/tree/master/0955-delete-columns-to-make-sorted-ii) |
142-
| [0960-delete-columns-to-make-sorted-iii](https://github.com/hogan-tech/leetcode-solution/tree/master/0960-delete-columns-to-make-sorted-iii) |
143-
## Dynamic Programming
144-
| |
145-
| ------- |
146-
| [0960-delete-columns-to-make-sorted-iii](https://github.com/hogan-tech/leetcode-solution/tree/master/0960-delete-columns-to-make-sorted-iii) |
147-
## Greedy
148-
| |
149-
| ------- |
150-
| [0955-delete-columns-to-make-sorted-ii](https://github.com/hogan-tech/leetcode-solution/tree/master/0955-delete-columns-to-make-sorted-ii) |
151-
<!---LeetCode Topics End-->

0 commit comments

Comments
 (0)