Skip to content

Commit 1e80d6c

Browse files
committed
Update README.md table format and adjust problem entry order in automata.py
1 parent 32640f9 commit 1e80d6c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Welcome to my LeetCode solutions repository! 🚀 Here, I solve coding challenge
66

77
| # | Title | Solution | Tags | Difficulty |
88
|---| ----- | -------- | ---------- | ---- |
9-
|0001|[Two Sum](https://leetcode.com/problems/two-sum/description/)|[Python](./array_hashing/0001-two-sum.py)| Easy | Array, Hash Table |
10-
|0020|[Valid Parentheses](https://leetcode.com/problems/valid-parentheses/description/)|[Python](./stack/0020-valid-parentheses.py)| Easy | String, Stack |
11-
|0049|[Group Anagrams](https://leetcode.com/problems/group-anagrams/description/)|[Python](./array_hashing/0049-group-anagrams.py)| Medium | Array, Hash Table, String, Sorting |
12-
|0125|[Valid Palindrome](https://leetcode.com/problems/valid-palindrome/description/)|[Python](./two_pointers/0125-valid-palindrome.py)| Easy | Two Pointers, String |
13-
|0217|[Contains Duplicate](https://leetcode.com/problems/contains-duplicate/description/)|[Python](./array_hashing/0217-contains-duplicate.py)| Easy | Array, Hash Table, Sorting |
14-
|0242|[Valid Anagram](https://leetcode.com/problems/valid-anagram/description/)|[Python](./array_hashing/0242-valid-anagram.py)| Easy | Hash Table, String, Sorting |
15-
|0347|[Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/description/)|[Python](./array_hashing/0347-top-k-frequent-elements.py)| Medium | Array, Hash Table, Divide and Conquer, Sorting, Heap (Priority Queue), Bucket Sort, Counting, Quickselect |
9+
|0001|[Two Sum](https://leetcode.com/problems/two-sum/description/)|[Python](./array_hashing/0001-two-sum.py)| Array, Hash Table | Easy |
10+
|0020|[Valid Parentheses](https://leetcode.com/problems/valid-parentheses/description/)|[Python](./stack/0020-valid-parentheses.py)| String, Stack | Easy |
11+
|0049|[Group Anagrams](https://leetcode.com/problems/group-anagrams/description/)|[Python](./array_hashing/0049-group-anagrams.py)| Array, Hash Table, String, Sorting | Medium |
12+
|0125|[Valid Palindrome](https://leetcode.com/problems/valid-palindrome/description/)|[Python](./two_pointers/0125-valid-palindrome.py)| Two Pointers, String | Easy |
13+
|0217|[Contains Duplicate](https://leetcode.com/problems/contains-duplicate/description/)|[Python](./array_hashing/0217-contains-duplicate.py)| Array, Hash Table, Sorting | Easy |
14+
|0242|[Valid Anagram](https://leetcode.com/problems/valid-anagram/description/)|[Python](./array_hashing/0242-valid-anagram.py)| Hash Table, String, Sorting | Easy |
15+
|0347|[Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/description/)|[Python](./array_hashing/0347-top-k-frequent-elements.py)| Array, Hash Table, Divide and Conquer, Sorting, Heap (Priority Queue), Bucket Sort, Counting, Quickselect | Medium |
1616

1717
## 🚀 Keep Coding & Stay Motivated!
1818

automata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def build_readme():
4040
problem_number, slug, problem_title = extract_problem_info(file)
4141
if problem_number:
4242
difficulty, tags = get_problem_stats(slug)
43-
problem_entries.append((problem_number, problem_title, f"[Python](./{topic}/{file})", difficulty, tags))
43+
problem_entries.append((problem_number, problem_title, f"[Python](./{topic}/{file})", tags, difficulty))
4444

4545
problem_entries.sort()
4646

0 commit comments

Comments
 (0)