mirror of
https://github.com/Xevion/leetcode.git
synced 2025-12-06 07:15:22 -06:00
Extend cache to one week, regen README
This commit is contained in:
@@ -49,7 +49,7 @@ def main():
|
|||||||
from questions import QuestionDatabase
|
from questions import QuestionDatabase
|
||||||
|
|
||||||
database = QuestionDatabase(
|
database = QuestionDatabase(
|
||||||
cache_path=ROOT_DIRECTORY / "questions.json", cache_time=60 * 60 * 24
|
cache_path=ROOT_DIRECTORY / "questions.json", cache_time=60 * 60 * 24 * 7
|
||||||
)
|
)
|
||||||
|
|
||||||
table = []
|
table = []
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
This repository contains my solutions to various problems on [LeetCode](https://leetcode.com/).
|
This repository contains my solutions to various problems on [LeetCode](https://leetcode.com/).
|
||||||
|
|
||||||
Below is the full table containing all the problems I have solved so far. The table is [automatically generated](./.generate/main.py)automatically generated.
|
Below is the full table containing all the problems I have solved so far. The table is [automatically generated](./.generate/main.py).
|
||||||
| # | Title | Solution | Difficulty | Tags |
|
| # | Title | Solution | Difficulty | Tags |
|
||||||
|---| ----- | -------- | ---------- | ---- |
|
|---| ----- | -------- | ---------- | ---- |
|
||||||
| 1 | [Two Sum](https://leetcode.com/problems/two-sum) | [Java](/solutions/two-sum/Solution.java) | Easy | [Array](https://leetcode.com/tag/array), [Hash Table](https://leetcode.com/tag/hash-table) |
|
| 1 | [Two Sum](https://leetcode.com/problems/two-sum) | [Java](/solutions/two-sum/Solution.java) | Easy | [Array](https://leetcode.com/tag/array), [Hash Table](https://leetcode.com/tag/hash-table) |
|
||||||
@@ -24,5 +24,5 @@ Below is the full table containing all the problems I have solved so far. The ta
|
|||||||
| 1636 | [Sort Array by Increasing Frequency](https://leetcode.com/problems/sort-array-by-increasing-frequency) | [Java](/solutions/sort-array-by-increasing-frequency/Solution.java) | Easy | [Array](https://leetcode.com/tag/array), [Hash Table](https://leetcode.com/tag/hash-table), [Sorting](https://leetcode.com/tag/sorting) |
|
| 1636 | [Sort Array by Increasing Frequency](https://leetcode.com/problems/sort-array-by-increasing-frequency) | [Java](/solutions/sort-array-by-increasing-frequency/Solution.java) | Easy | [Array](https://leetcode.com/tag/array), [Hash Table](https://leetcode.com/tag/hash-table), [Sorting](https://leetcode.com/tag/sorting) |
|
||||||
|
|
||||||
<sub>
|
<sub>
|
||||||
Generated on 2023-10-08
|
Generated on 2023-10-09
|
||||||
</sub>
|
</sub>
|
||||||
Reference in New Issue
Block a user