Skip to content

Commit a8dcae7

Browse files
committed
update readme
1 parent 57d08b0 commit a8dcae7

10 files changed

+6
-33
lines changed

.github/test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
3750-minimum-number-of-flips-to-reverse-binary-string python easy
2-
3751-total-waviness-of-numbers-in-range-i python medium
3-
3752-lexicographically-smallest-negated-permutation-that-sums-to-target python medium
1+
3190-find-minimum-operations-to-make-all-elements-divisible-by-three python easy
2+
1262-greatest-sum-divisible-by-three python medium
3+
1018-binary-prefix-divisible-by-5 python easy

Question_List_1001_2000.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
| 1010 | [Pairs of Songs With Total Durations Divisible by 60](https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60/) | [Python](./Python/1010-pairs-of-songs-with-total-durations-divisible-by-60.py) | [Medium](./Readme/1010-pairs-of-songs-with-total-durations-divisible-by-60.md) |
1111
| 1011 | [Capacity To Ship Packages Within D Days](https://leetcode.com/problems/capacity-to-ship-packages-within-d-days/) | [Python](./Python/1011-capacity-to-ship-packages-within-d-days.py) | [Medium](./Readme/1011-capacity-to-ship-packages-within-d-days.md) |
1212
| 1014 | [Best Sightseeing Pair](https://leetcode.com/problems/best-sightseeing-pair) | [Python](./Python/1014-best-sightseeing-pair.py) | [Medium](./Readme/1014-best-sightseeing-pair.md) |
13+
| 1018 | [Binary Prefix Divisible By 5](https://leetcode.com/problems/binary-prefix-divisible-by-5) | [Python](./Python/1018-binary-prefix-divisible-by-5.py) | [Easy](./Readme/1018-binary-prefix-divisible-by-5.md) |
1314
| 1019 | [Next Greater Node In Linked List](https://leetcode.com/problems/next-greater-node-in-linked-list) | [Python](./Python/1019-next-greater-node-in-linked-list.py) | [Medium](./Readme/1019-next-greater-node-in-linked-list.md) |
1415
| 1023 | [Camelcase Matching](https://leetcode.com/problems/camelcase-matching) | [Python](./Python/1023-camelcase-matching.py) | [Medium](./Readme/1023-camelcase-matching.md) |
1516
| 1026 | [Maximum Difference Between Node and Ancestor](https://leetcode.com/problems/maximum-difference-between-node-and-ancestor/) | [Python](./Python/1026-maximum-difference-between-node-and-ancestor.py) | [Medium](./Readme/1026-maximum-difference-between-node-and-ancestor.md) |
@@ -118,6 +119,7 @@
118119
| 1256 | [Encode Number](https://leetcode.com/problems/encode-number/) | [Python](./Python/1256-encode-number.py) | [Medium](./Readme/1256-encode-number.md) |
119120
| 1257 | [Smallest Common Region](https://leetcode.com/problems/smallest-common-region/) | [Python](./Python/1257-smallest-common-region.py) | [Medium](./Readme/1257-smallest-common-region.md) |
120121
| 1261 | [Find Elements in a Contaminated Binary Tree](https://leetcode.com/problems/find-elements-in-a-contaminated-binary-tree) | [Python](./Python/1261-find-elements-in-a-contaminated-binary-tree.py) | [Medium](./Readme/1261-find-elements-in-a-contaminated-binary-tree.md) |
122+
| 1262 | [Greatest Sum Divisible by Three](https://leetcode.com/problems/greatest-sum-divisible-by-three/) | [Python](./Python/1262-greatest-sum-divisible-by-three.py) | [Medium](./Readme/1262-greatest-sum-divisible-by-three.md) |
121123
| 1265 | [Print Immutable Linked List in Reverse](https://leetcode.com/problems/print-immutable-linked-list-in-reverse/) | [C++](./C++/1265-print-immutable-linked-list-in-reverse.cpp) | [Medium](./Readme/1265-print-immutable-linked-list-in-reverse.md) |
122124
| 1266 | [Minimum Time Visiting All Points](https://leetcode.com/problems/minimum-time-visiting-all-points/) | [Python](./Python/1266-minimum-time-visiting-all-points.py) | [Easy](./Readme/1266-minimum-time-visiting-all-points.md) |
123125
| 1267 | [Count Servers that Communicate](https://leetcode.com/problems/count-servers-that-communicate) | [Python](./Python/1267-count-servers-that-communicate.py) | [Medium](./Readme/1267-count-servers-that-communicate.md) |

Question_List_3001_4000.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
| 3179 | [Find the N-th Value After K Seconds](https://leetcode.com/problems/find-the-n-th-value-after-k-seconds) | [Python](./Python/3179-find-the-n-th-value-after-k-seconds.py) | [Medium](./Readme/3179-find-the-n-th-value-after-k-seconds.md) |
5555
| 3186 | [Maximum Total Damage with Spell Casting](https://leetcode.com/problems/maximum-total-damage-with-spell-casting/) | [Python](./Python/3186-maximum-total-damage-with-spell-casting.py) | [Medium](./Readme/3186-maximum-total-damage-with-spell-casting.md) |
5656
| 3189 | [Minimum Moves to Get a Peaceful Board](https://leetcode.com/problems/minimum-moves-to-get-a-peaceful-board/) | [Python](./Python/3189-minimum-moves-to-get-a-peaceful-board.py) | [Medium](./Readme/3189-minimum-moves-to-get-a-peaceful-board.md) |
57+
| 3190 | [Minimum Operations to Make All Elements Divisible by Three](https://leetcode.com/problems/minimum-operations-to-make-all-elements-divisible-by-three) | [Python](./Python/3190-minimum-operations-to-make-all-elements-divisible-by-three.py) | [Easy](./Readme/3190-minimum-operations-to-make-all-elements-divisible-by-three.md) |
5758
| 3191 | [Minimum Operations to Make Binary Array Elements Equal to One I](https://leetcode.com/problems/minimum-operations-to-make-binary-array-elements-equal-to-one-i) | [Python](./Python/3191-minimum-operations-to-make-binary-array-elements-equal-to-one-i.py) | [Medium](./Readme/3191-minimum-operations-to-make-binary-array-elements-equal-to-one-i.md) |
5859
| 3192 | [Minimum Operations to Make Binary Array Elements Equal to One II](https://leetcode.com/problems/minimum-operations-to-make-binary-array-elements-equal-to-one-ii) | [Python](./Python/3192-minimum-operations-to-make-binary-array-elements-equal-to-one-ii.py) | [Medium](./Readme/3192-minimum-operations-to-make-binary-array-elements-equal-to-one-ii.md) |
5960
| 3195 | [Find the Minimum Area to Cover All Ones I](https://leetcode.com/problems/find-the-minimum-area-to-cover-all-ones-i) | [Python](./Python/3195-find-the-minimum-area-to-cover-all-ones-i.py) | [Medium](./Readme/3195-find-the-minimum-area-to-cover-all-ones-i.md) |

README.md

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -115,33 +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-
## Array
122-
| |
123-
| ------- |
124-
| [1018-binary-prefix-divisible-by-5](https://github.com/hogan-tech/leetcode-solution/tree/master/1018-binary-prefix-divisible-by-5) |
125-
| [1262-greatest-sum-divisible-by-three](https://github.com/hogan-tech/leetcode-solution/tree/master/1262-greatest-sum-divisible-by-three) |
126-
| [3190-find-minimum-operations-to-make-all-elements-divisible-by-three](https://github.com/hogan-tech/leetcode-solution/tree/master/3190-find-minimum-operations-to-make-all-elements-divisible-by-three) |
127-
## Math
128-
| |
129-
| ------- |
130-
| [3190-find-minimum-operations-to-make-all-elements-divisible-by-three](https://github.com/hogan-tech/leetcode-solution/tree/master/3190-find-minimum-operations-to-make-all-elements-divisible-by-three) |
131-
## Dynamic Programming
132-
| |
133-
| ------- |
134-
| [1262-greatest-sum-divisible-by-three](https://github.com/hogan-tech/leetcode-solution/tree/master/1262-greatest-sum-divisible-by-three) |
135-
## Greedy
136-
| |
137-
| ------- |
138-
| [1262-greatest-sum-divisible-by-three](https://github.com/hogan-tech/leetcode-solution/tree/master/1262-greatest-sum-divisible-by-three) |
139-
## Sorting
140-
| |
141-
| ------- |
142-
| [1262-greatest-sum-divisible-by-three](https://github.com/hogan-tech/leetcode-solution/tree/master/1262-greatest-sum-divisible-by-three) |
143-
## Bit Manipulation
144-
| |
145-
| ------- |
146-
| [1018-binary-prefix-divisible-by-5](https://github.com/hogan-tech/leetcode-solution/tree/master/1018-binary-prefix-divisible-by-5) |
147-
<!---LeetCode Topics End-->
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)