An open API service indexing awesome lists of open source software.

https://github.com/chtozamm/leetcode

My solutions for LeetCode problems
https://github.com/chtozamm/leetcode

go golang leetcode

Last synced: 3 months ago
JSON representation

My solutions for LeetCode problems

Awesome Lists containing this project

README

        

| Title | Difficulty | Tag |
| ------------------------------------------------------------------------------------- | ---------- | -------------------------------------------------------------------------------- |
| [2. Add Two Numbers](/go/problems/0002) | Medium | Linked List, Math, Recursion |
| [50. Pow(x, n)](/go/problems/0050) | Easy | Math, Recursion |
| [69. Sqrt(x)](/go/problems/0069) | Easy | Math, Binary Search |
| [70. Climbing Stairs](/go/problems/0070) | Easy | Math, Dynamic Programming, Memoization |
| [104. Maximum Depth of Binary Tree](/go/problems/0104) | Easy | Tree, Depth-First Search, Breadth-First Search, Binary Tree |
| [151. Reverse Words in a String](/go/problems/0151) | Medium | Two Pointers, String |
| [208. Implement Trie (Prefix Tree)](/go/problems/0208) | Medium | Hash Table, String, Design, Trie |
| [345. Reverse Vowels of a String](/go/problems/0345) | Easy | Two Pointers, String |
| [407. Trapping Rain Water II](/go/problems/0407) | Hard | Array, Breadth-First Search, Heap (Priority Queue), Matrix |
| [496. Next Greater Element I](/go/problems/0496) | Easy | Array, Hash Table, Stack, Monotonic Stack |
| [503. Next Greater Element II](/go/problems/0503) | Medium | Array, Stack, Monotonic Stack |
| [605. Can Place Flowers](/go/problems/0605) | Easy | Array, Greedy |
| [680. Valid Palindrome II](/go/problems/0680) | Easy | Two Pointers, String, Greedy |
| [704. Binary Search](/go/problems/0704) | Easy | Array, Binary Search |
| [739. Daily Temperatures](/go/problems/0739) | Medium | Array, Stack, Monotonic Stack |
| [802. Find Eventual Safe States](/go/problems/0802) | Medium | Depth-First Search, Breadth-First Search, Graph, Topological Sort |
| [916. Word Subsets](/go/problems/0916) | Medium | Array, Hash Table, String |
| [1071. Greatest Common Divisor of Strings](/go/problems/1071) | Easy | Math, String |
| [1267. Count Servers that Communicate](/go/problems/1267) | Medium | Array, Depth-First Search, Breadth-First Search, Union Find, Matrix, Counting |
| [1368. Minimum Cost to Make at Least One Valid Path in a Grid](/go/problems/1368) | Hard | Array, Breadth-First Search, Graph, Heap (Priority Queue), Matrix, Shortest Path |
| [1400. Construct K Palindrome Strings](/go/problems/1400) | Medium | Hash Table, String, Greedy, Counting |
| [1408. String Matching in an Array](/go/problems/1408) | Easy | Array, String, String Matching |
| [1422. Maximum Score After Splitting a String](/go/problems/1422) | Easy | String, Prefix Sum |
| [1431. Kids With the Greatest Number of Candies](/go/problems/1431) | Easy | Array |
| [1475. Final Prices With a Special Discount in a Shop](/go/problems/1475) | Easy | Array, Stack, Monotonic Stack |
| [1765. Map of Highest Peak](/go/problems/1765) | Medium | Array, Breadth-First Search, Matrix |
| [1768. Merge Strings Alternately](/go/problems/1768) | Easy | Two Pointers, String |
| [1769. Minimum Number of Operations to Move All Balls to Each Box](/go/problems/1769) | Medium | Array, String, Prefix Sum |
| [1930. Unique Length-3 Palindromic Subsequences](/go/problems/1930) | Medium | Hash Table, String, Bit Manipulation, Prefix Sum |
| [2017. Grid Game](/go/problems/2017) | Medium | Array, Matrix, Prefix Sum |
| [2116. Check if a Parentheses String Can Be Valid](/go/problems/2116) | Medium | String, Stack, Greedy |
| [2185. Counting Words With a Given Prefix](/go/problems/2185) | Easy | Array, String, String Matching |
| [2270. Number of Ways to Split Array](/go/problems/2270) | Medium | Array, Prefix Sum |
| [2381. Shifting Letters II](/go/problems/2381) | Medium | Array, String, Prefix Sum |
| [2425. Bitwise XOR of All Pairings](/go/problems/2425) | Medium | Array, Bit Manipulation, Brainteaser |
| [2429. Minimize XOR](/go/problems/2429) | Medium | Greedy, Bit Manipulation |
| [2466. Count Ways To Build Good Strings](/go/problems/2466) | Medium | Dynamic Programming |
| [2558. Take Gifts From the Richest Pile](/go/problems/2558) | Easy | Array, Heap (Priority Queue), Simulation |
| [2559. Count Vowel Strings in Ranges](/go/problems/2559) | Medium | Array, String, Prefix Sum |
| [2657. Find the Prefix Common Array of Two Arrays](/go/problems/2657) | Medium | Array, Hash Table, Bit Manipulation |
| [2661. First Completely Painted Row or Column](/go/problems/2661) | Medium | Array, Hash Table, Matrix |
| [2683. Neighboring Bitwise XOR](/go/problems/2683) | Medium | Array, Bit Manipulation |
| [2948. Make Lexicographically Smallest Array by Swapping Elements](/go/problems/2948) | Medium | Array, Union Find, Sorting |
| [3042. Count Prefix and Suffix Pairs I](/go/problems/3042) | Easy | Array, String, Trie, Rolling Hash, String Matching, Hash Function |
| [3223. Minimum Length of String After Operations](/go/problems/3223) | Medium | Hash Table, String, Counting |
| [3264. Final Array State After K Multiplication Operations I](/go/problems/3264) | Easy | Array, Math, Heap (Priority Queue), Simulation |