Extend cache to one week, regen README

This commit is contained in:
2023-10-09 22:59:38 -05:00
parent 26c76756e7
commit 326dbbe8cf
2 changed files with 3 additions and 3 deletions

View File

@@ -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 = []

View File

@@ -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>