Skip to content

Commit fa46ca2

Browse files
committed
README.md Added implemented languages and solution count.
1 parent 4af855e commit fa46ca2

File tree

1 file changed

+34
-34
lines changed

1 file changed

+34
-34
lines changed

README.md

+34-34
Original file line numberDiff line numberDiff line change
@@ -19,57 +19,57 @@ Generally speaking, the simple questions are placed at the front, and the depend
1919
After finishing one category of questions, you can study another category to improve your sense of achievement and learning speed.
2020

2121
# Brute Force
22-
- [503. Next Greater Element II](problems/0503-next-greater-element-ii.md) was solved in Python, Java, C++, JavaScript, C#, Go, Ruby.
22+
- [503. Next Greater Element II](problems/0503-next-greater-element-ii.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
2323

2424
# Dynamic Programming
2525
## Basics
26-
- [509. Fibonacci Number](problems/0509-fibonacci-number.md) solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
26+
- [509. Fibonacci Number](problems/0509-fibonacci-number.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
2727

2828
## House Robber
29-
- [198. House Robber](problems/0198-house-robber.md) has been solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
30-
- [213. House Robber II](problems/0213-house-robber-ii.md) solved in `Python, Java, C++, JavaScript, C#, Go, Ruby`.
31-
- [337. House Robber III](problems/0337-house-robber-iii.md) [Python, Java, C++, JavaScript, C#, Go, Ruby]
29+
- [198. House Robber](problems/0198-house-robber.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
30+
- [213. House Robber II](problems/0213-house-robber-ii.md) was solved in _Python, JavaScript, Go_.
31+
- [337. House Robber III](problems/0337-house-robber-iii.md) was solved in _Python, JavaScript, Go_ and **2** solutions.
3232

3333
## Knapsack Problems
3434
### 0/1 Knapsack
35-
- [416. Partition Equal Subset Sum](problems/0416-partition-equal-subset-sum.md)
36-
- [1049. Last Stone Weight II](problems/1049-last-stone-weight-ii.md)
37-
- [494. Target Sum](problems/0494-target-sum.md)
38-
- [474. Ones and Zeroes](problems/0474-ones-and-zeroes.md)
35+
- [416. Partition Equal Subset Sum](problems/0416-partition-equal-subset-sum.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_ and **2** solutions.
36+
- [1049. Last Stone Weight II](problems/1049-last-stone-weight-ii.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_ and **2** solutions.
37+
- [494. Target Sum](problems/0494-target-sum.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
38+
- [474. Ones and Zeroes](problems/0474-ones-and-zeroes.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
3939

4040
### Unbounded Knapsack
41-
- [518. Coin Change II](problems/0518-coin-change-ii.md)
42-
- [377. Combination Sum IV](problems/0377-combination-sum-iv.md)
43-
- [322. Coin Change](problems/0322-coin-change.md)
44-
- [279. Perfect Squares](problems/0279-perfect-squares.md)
45-
- [139. Word Break](problems/0139-word-break.md)
41+
- [518. Coin Change II](problems/0518-coin-change-ii.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
42+
- [377. Combination Sum IV](problems/0377-combination-sum-iv.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
43+
- [322. Coin Change](problems/0322-coin-change.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
44+
- [279. Perfect Squares](problems/0279-perfect-squares.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
45+
- [139. Word Break](problems/0139-word-break.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
4646

4747
## Stock Maximum Profit Problems
48-
- [121. Best Time to Buy and Sell Stock](problems/0121-best-time-to-buy-and-sell-stock.md)
49-
- [122. Best Time to Buy and Sell Stock II](problems/0122-best-time-to-buy-and-sell-stock-ii.md)
50-
- [714. Best Time to Buy and Sell Stock with Transaction Fee](problems/0714-best-time-to-buy-and-sell-stock-with-transaction-fee.md)
51-
- [123. Best Time to Buy and Sell Stock III](problems/0123-best-time-to-buy-and-sell-stock-iii.md)
52-
- [188. Best Time to Buy and Sell Stock IV](problems/0188-best-time-to-buy-and-sell-stock-iv.md)
53-
- [309. Best Time to Buy and Sell Stock with Cooldown](problems/0309-best-time-to-buy-and-sell-stock-with-cooldown.md)
48+
- [121. Best Time to Buy and Sell Stock](problems/0121-best-time-to-buy-and-sell-stock.md) was solved in _Python, JavaScript, Go_.
49+
- [122. Best Time to Buy and Sell Stock II](problems/0122-best-time-to-buy-and-sell-stock-ii.md) was solved in _Python, JavaScript, Go_.
50+
- [714. Best Time to Buy and Sell Stock with Transaction Fee](problems/0714-best-time-to-buy-and-sell-stock-with-transaction-fee.md) was solved in _Python, JavaScript, Go_.
51+
- [123. Best Time to Buy and Sell Stock III](problems/0123-best-time-to-buy-and-sell-stock-iii.md) was solved in _Python, JavaScript, Go_.
52+
- [188. Best Time to Buy and Sell Stock IV](problems/0188-best-time-to-buy-and-sell-stock-iv.md) was solved in _Python, JavaScript, Go_.
53+
- [309. Best Time to Buy and Sell Stock with Cooldown](problems/0309-best-time-to-buy-and-sell-stock-with-cooldown.md) was solved in _Python, JavaScript, Go_.
5454

5555
## Subsequence Problems
56-
- [674. Longest Continuous Increasing Subsequence](problems/0674-longest-continuous-increasing-subsequence.md)
57-
- [300. Longest Increasing Subsequence](problems/0300-longest-increasing-subsequence.md)
58-
- [718. Maximum Length of Repeated Subarray](problems/0718-maximum-length-of-repeated-subarray.md)
59-
- [1143. Longest Common Subsequence](problems/1143-longest-common-subsequence.md)
60-
- [1035. Uncrossed Lines](problems/1035-uncrossed-lines.md)
61-
- [53. Maximum Subarray](problems/0053-maximum-subarray.md)
62-
- [392. Is Subsequence](problems/0392-is-subsequence.md)
63-
- [583. Delete Operation for Two Strings](problems/0583-delete-operation-for-two-strings.md)
64-
- [72. Edit Distance](problems/0072-edit-distance.md)
56+
- [674. Longest Continuous Increasing Subsequence](problems/0674-longest-continuous-increasing-subsequence.md) was solved in _Python, Java, JavaScript, C#_.
57+
- [300. Longest Increasing Subsequence](problems/0300-longest-increasing-subsequence.md) was solved in _Python, Java, JavaScript, C#_.
58+
- [718. Maximum Length of Repeated Subarray](problems/0718-maximum-length-of-repeated-subarray.md) was solved in _Python, Java, JavaScript, C#_.
59+
- [1143. Longest Common Subsequence](problems/1143-longest-common-subsequence.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
60+
- [1035. Uncrossed Lines](problems/1035-uncrossed-lines.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
61+
- [53. Maximum Subarray](problems/0053-maximum-subarray.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
62+
- [392. Is Subsequence](problems/0392-is-subsequence.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
63+
- [583. Delete Operation for Two Strings](problems/0583-delete-operation-for-two-strings.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
64+
- [72. Edit Distance](problems/0072-edit-distance.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
6565

6666
# Monotonic Stack
67-
- [739. Daily Temperatures](problems/0739-daily-temperatures.md)
68-
- [496. Next Greater Element I](problems/0496-next-greater-element-i.md)
69-
- [42. Trapping Rain Water](problems/0042-trapping-rain-water.md)
70-
- [84. Largest Rectangle in Histogram](problems/0084-largest-rectangle-in-histogram.md)
67+
- [739. Daily Temperatures](problems/0739-daily-temperatures.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
68+
- [496. Next Greater Element I](problems/0496-next-greater-element-i.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
69+
- [42. Trapping Rain Water](problems/0042-trapping-rain-water.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_ and **2** solutions.
70+
- [84. Largest Rectangle in Histogram](problems/0084-largest-rectangle-in-histogram.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_.
7171

7272
# Graph Theory
73-
- [797. All Paths From Source to Target](problems/0797-all-paths-from-source-to-target.md)
73+
- [797. All Paths From Source to Target](problems/0797-all-paths-from-source-to-target.md) was solved in _Python, Java, C++, JavaScript, C#, Go, Ruby_ and **2** solutions.
7474

7575
More LeetCode problems will be added soon...

0 commit comments

Comments
 (0)