Skip to content

Commit a6838ff

Browse files
[Auto] Update LeetCode README table
1 parent cea2095 commit a6838ff

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,7 @@ If you want to use this project follow the steps [here](https://github.com/NineP
479479
| 1642. Water Bottles | [🔗](https://leetcode.romitsagu.com/solutions/1642/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Math, Simulation |
480480
| 1675. Magnetic Force Between Two Balls | [🔗](https://leetcode.romitsagu.com/solutions/1675/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, Binary Search, Sorting |
481481
| 1700. Minimum Time To Make Rope Colorful | [🔗](https://leetcode.romitsagu.com/solutions/1700/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, String, Dynamic Programming, Greedy |
482+
| 1732. Minimum One Bit Operations To Make Integers Zero | [🔗](https://leetcode.romitsagu.com/solutions/1732/) | ![Hard](https://img.shields.io/badge/Difficulty-Hard-e05d44.svg) | Dynamic Programming, Bit Manipulation, Memoization |
482483
| 1747. Lexicographically Smallest String After Applying Operations | [🔗](https://leetcode.romitsagu.com/solutions/1747/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | String, Depth-First Search, Breadth-First Search, Enumeration |
483484
| 1765. Merge In Between Linked Lists | [🔗](https://leetcode.romitsagu.com/solutions/1765/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Linked List |
484485
| 1817. Calculate Money In Leetcode Bank | [🔗](https://leetcode.romitsagu.com/solutions/1817/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Math |
@@ -511,6 +512,7 @@ If you want to use this project follow the steps [here](https://github.com/NineP
511512
| 2432. Number Of Zero Filled Subarrays | [🔗](https://leetcode.romitsagu.com/solutions/2432/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, Math |
512513
| 2497. Maximum Matching Of Players With Trainers | [🔗](https://leetcode.romitsagu.com/solutions/2497/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, Two Pointers, Greedy, Sorting |
513514
| 2529. Range Product Queries Of Powers | [🔗](https://leetcode.romitsagu.com/solutions/2529/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, Bit Manipulation, Prefix Sum |
515+
| 2618. Maximize The Minimum Powered City | [🔗](https://leetcode.romitsagu.com/solutions/2618/) | ![Hard](https://img.shields.io/badge/Difficulty-Hard-e05d44.svg) | Array, Binary Search, Greedy, Queue, Sliding Window, Prefix Sum |
514516
| 2661. Smallest Missing Non Negative Integer After Operations | [🔗](https://leetcode.romitsagu.com/solutions/2661/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, Hash Table, Math, Greedy |
515517
| 2689. Rearranging Fruits | [🔗](https://leetcode.romitsagu.com/solutions/2689/) | ![Hard](https://img.shields.io/badge/Difficulty-Hard-e05d44.svg) | Array, Hash Table, Greedy, Sort |
516518
| 2734. Array Prototype Last | [🔗](https://leetcode.romitsagu.com/solutions/2734/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | |

Site_README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,7 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
475475
| 1642. Water Bottles | [🔗](https://leetcode.romitsagu.com/solutions/1642/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Math, Simulation |
476476
| 1675. Magnetic Force Between Two Balls | [🔗](https://leetcode.romitsagu.com/solutions/1675/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, Binary Search, Sorting |
477477
| 1700. Minimum Time To Make Rope Colorful | [🔗](https://leetcode.romitsagu.com/solutions/1700/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, String, Dynamic Programming, Greedy |
478+
| 1732. Minimum One Bit Operations To Make Integers Zero | [🔗](https://leetcode.romitsagu.com/solutions/1732/) | <span style="background-color:#ffffff1a; color:#f8615c; padding:2px 6px; border-radius:6px;">Hard</span> | Dynamic Programming, Bit Manipulation, Memoization |
478479
| 1747. Lexicographically Smallest String After Applying Operations | [🔗](https://leetcode.romitsagu.com/solutions/1747/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | String, Depth-First Search, Breadth-First Search, Enumeration |
479480
| 1765. Merge In Between Linked Lists | [🔗](https://leetcode.romitsagu.com/solutions/1765/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Linked List |
480481
| 1817. Calculate Money In Leetcode Bank | [🔗](https://leetcode.romitsagu.com/solutions/1817/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Math |
@@ -507,6 +508,7 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
507508
| 2432. Number Of Zero Filled Subarrays | [🔗](https://leetcode.romitsagu.com/solutions/2432/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, Math |
508509
| 2497. Maximum Matching Of Players With Trainers | [🔗](https://leetcode.romitsagu.com/solutions/2497/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, Two Pointers, Greedy, Sorting |
509510
| 2529. Range Product Queries Of Powers | [🔗](https://leetcode.romitsagu.com/solutions/2529/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, Bit Manipulation, Prefix Sum |
511+
| 2618. Maximize The Minimum Powered City | [🔗](https://leetcode.romitsagu.com/solutions/2618/) | <span style="background-color:#ffffff1a; color:#f8615c; padding:2px 6px; border-radius:6px;">Hard</span> | Array, Binary Search, Greedy, Queue, Sliding Window, Prefix Sum |
510512
| 2661. Smallest Missing Non Negative Integer After Operations | [🔗](https://leetcode.romitsagu.com/solutions/2661/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, Hash Table, Math, Greedy |
511513
| 2689. Rearranging Fruits | [🔗](https://leetcode.romitsagu.com/solutions/2689/) | <span style="background-color:#ffffff1a; color:#f8615c; padding:2px 6px; border-radius:6px;">Hard</span> | Array, Hash Table, Greedy, Sort |
512514
| 2734. Array Prototype Last | [🔗](https://leetcode.romitsagu.com/solutions/2734/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | |

0 commit comments

Comments
 (0)