Skip to content

Commit c38eaa6

Browse files
committed
update readme
1 parent e201348 commit c38eaa6

File tree

7 files changed

+4
-27
lines changed

7 files changed

+4
-27
lines changed

.github/test.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
3765-complete-prime-number python medium
2-
3766-minimum-operations-to-make-binary-palindrome python medium
3-
3767-maximize-points-after-choosing-k-tasks python medium
1+
1874-minimize-product-sum-of-two-arrays python medium
2+
1925-count-square-sum-triples python easy

1874-minimize-product-sum-of-two-arrays/1874-minimize-product-sum-of-two-arrays.py renamed to Python/1874-minimize-product-sum-of-two-arrays.py

File renamed without changes.

1925-count-square-sum-triples/1925-count-square-sum-triples.py renamed to Python/1925-count-square-sum-triples.py

File renamed without changes.

Question_List_1001_2000.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@
382382
| 1863 | [Sum of All Subset XOR Totals](https://leetcode.com/problems/sum-of-all-subset-xor-totals/) | [Python](./Python/1863-sum-of-all-subset-xor-totals.py) | [Easy](./Readme/1863-sum-of-all-subset-xor-totals.md) |
383383
| 1865 | [Finding Pairs With a Certain Sum](https://leetcode.com/problems/finding-pairs-with-a-certain-sum/) | [Python](./Python/1865-finding-pairs-with-a-certain-sum.py) | [Medium](./Readme/1865-finding-pairs-with-a-certain-sum.md) |
384384
| 1870 | [Minimum Speed to Arrive on Time](https://leetcode.com/problems/minimum-speed-to-arrive-on-time/) | [Python](./Python/1870-minimum-speed-to-arrive-on-time.py) | [Medium](./Readme/1870-minimum-speed-to-arrive-on-time.md) |
385+
| 1874 | [Minimize Product Sum of Two Arrays](https://leetcode.com/problems/minimize-product-sum-of-two-arrays/) | [Python](./Python/1874-minimize-product-sum-of-two-arrays.py) | [Medium](./Readme/1874-minimize-product-sum-of-two-arrays.md) |
385386
| 1877 | [Minimize Maximum Pair Sum in Array](https://leetcode.com/problems/minimize-maximum-pair-sum-in-array/) | [Python](./Python/1877-minimize-maximum-pair-sum-in-array.py) | [Medium](./Readme/1877-minimize-maximum-pair-sum-in-array.md) |
386387
| 1881 | [Maximum Value After Insertion](https://leetcode.com/problems/maximum-value-after-insertion) | [Python](./Python/1881-maximum-value-after-insertion.py) | [Medium](./Readme/1881-maximum-value-after-insertion.md) |
387388
| 1885 | [Count Pairs in Two Arrays](https://leetcode.com/problems/count-pairs-in-two-arrays/) | [Python](./Python/1885-count-pairs-in-two-arrays.py) | [Medium](./Readme/1885-count-pairs-in-two-arrays.md) |
@@ -403,6 +404,7 @@
403404
| 1920 | [Build Array from Permutation](https://leetcode.com/problems/build-array-from-permutation/) | [Python](./C++/1920-build-array-from-permutation.py), [C++](./C++/1920-build-array-from-permutation.cpp) | [Easy](./Readme/1920-build-array-from-permutation.md) |
404405
| 1921 | [Eliminate Maximum Number of Monsters](https://leetcode.com/problems/eliminate-maximum-number-of-monsters/) | [Python](./Python/1921-eliminate-maximum-number-of-monsters.py) | [Medium](./Readme/1921-eliminate-maximum-number-of-monsters.md) |
405406
| 1922 | [Count Good Numbers](https://leetcode.com/problems/count-good-numbers) | [Python](./Python/1922-count-good-numbers.py) | [Medium](./Readme/1922-count-good-numbers.md) |
407+
| 1925 | [Count Square Sum Triples](https://leetcode.com/problems/count-square-sum-triples/) | [Python](./Python/1925-count-square-sum-triples.py) | [Easy](./Readme/1925-count-square-sum-triples.md) |
406408
| 1926 | [Nearest Exit from Entrance in Maze](https://leetcode.com/problems/nearest-exit-from-entrance-in-maze/) | [Python](./Python/1926-nearest-exit-from-entrance-in-maze.py) | [Medium](./Readme/1926-nearest-exit-from-entrance-in-maze.md) |
407409
| 1929 | [Concatenation of Array](https://leetcode.com/problems/concatenation-of-array/) | [Python](./Python/1929-concatenation-of-array.py) | [Easy](./Readme/1929-concatenation-of-array.md) |
408410
| 1930 | [Unique Length-3 Palindromic Subsequences](https://leetcode.com/problems/unique-length-3-palindromic-subsequences/) | [Python](./Python/1930-unique-length-3-palindromic-subsequences.py) | [Medium](./Readme/1930-unique-length-3-palindromic-subsequences.md) |

README.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -115,27 +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-
| [1874-minimize-product-sum-of-two-arrays](https://github.com/hogan-tech/leetcode-solution/tree/master/1874-minimize-product-sum-of-two-arrays) |
125-
## Greedy
126-
| |
127-
| ------- |
128-
| [1874-minimize-product-sum-of-two-arrays](https://github.com/hogan-tech/leetcode-solution/tree/master/1874-minimize-product-sum-of-two-arrays) |
129-
## Sorting
130-
| |
131-
| ------- |
132-
| [1874-minimize-product-sum-of-two-arrays](https://github.com/hogan-tech/leetcode-solution/tree/master/1874-minimize-product-sum-of-two-arrays) |
133-
## Math
134-
| |
135-
| ------- |
136-
| [1925-count-square-sum-triples](https://github.com/hogan-tech/leetcode-solution/tree/master/1925-count-square-sum-triples) |
137-
## Enumeration
138-
| |
139-
| ------- |
140-
| [1925-count-square-sum-triples](https://github.com/hogan-tech/leetcode-solution/tree/master/1925-count-square-sum-triples) |
141-
<!---LeetCode Topics End-->
File renamed without changes.

0 commit comments

Comments
 (0)