mirror of
https://github.com/Xevion/leetcode.git
synced 2025-12-06 09:15:27 -06:00
Setup all meta.json files, regenerate with latest revision
This commit is contained in:
18
README.md
18
README.md
@@ -2,7 +2,23 @@
|
|||||||
|
|
||||||
| # | Title | Solution | Difficulty |
|
| # | Title | Solution | Difficulty |
|
||||||
|-|-|-|-|
|
|-|-|-|-|
|
||||||
| 123 | Add Two Numbers | [Java](/solutions/add-two-numbers/Solution.java) | kinda hard idk |
|
| [8](https://leetcode.com/problems/string-to-integer-atoi) | [String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi) | [Java](/solutions/string-to-integer-atoi/Solution.java) | Medium |
|
||||||
|
| [5](https://leetcode.com/problems/longest-palindromic-substring) | [Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring) | [Java](/solutions/longest-palindromic-substring/Solution.java) | Medium |
|
||||||
|
| [1636](https://leetcode.com/problems/sort-array-by-increasing-frequency) | [Sort Array by Increasing Frequency](https://leetcode.com/problems/sort-array-by-increasing-frequency) | [Java](/solutions/sort-array-by-increasing-frequency/Solution.java) | Easy |
|
||||||
|
| [1](https://leetcode.com/problems/two-sum) | [Two Sum](https://leetcode.com/problems/two-sum) | [Java](/solutions/two-sum/Solution.java) | Easy |
|
||||||
|
| [1608](https://leetcode.com/problems/special-array-with-x-elements-greater-than-or-equal-x) | [Special Array With X Elements Greater Than or Equal X](https://leetcode.com/problems/special-array-with-x-elements-greater-than-or-equal-x) | [Java](/solutions/special-array-with-x-elements-greater-than-or-equal-x/Solution.java) | Easy |
|
||||||
|
| [4](https://leetcode.com/problems/median-of-two-sorted-arrays) | [Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays) | [Rust (Two Pointers)](/solutions/median-of-two-sorted-arrays/src/bin/two-pointers.rs) | Hard |
|
||||||
|
| [2](https://leetcode.com/problems/add-two-numbers) | [Add Two Numbers](https://leetcode.com/problems/add-two-numbers) | [Java](/solutions/add-two-numbers/Solution.java) | Medium |
|
||||||
|
| [1048](https://leetcode.com/problems/longest-string-chain) | [Longest String Chain](https://leetcode.com/problems/longest-string-chain) | [Java](/solutions/longest-string-chain/Solution.java) | Medium |
|
||||||
|
| [7](https://leetcode.com/problems/reverse-integer) | [Reverse Integer](https://leetcode.com/problems/reverse-integer) | [Java](/solutions/reverse-integer/Solution.java) | Medium |
|
||||||
|
| [6](https://leetcode.com/problems/zigzag-conversion) | [Zigzag Conversion](https://leetcode.com/problems/zigzag-conversion) | [Java](/solutions/zigzag-conversion/Solution.java) | Medium |
|
||||||
|
| [9](https://leetcode.com/problems/palindrome-number) | [Palindrome Number](https://leetcode.com/problems/palindrome-number) | [Java](/solutions/palindrome-number/Solution.java) | Easy |
|
||||||
|
| [238](https://leetcode.com/problems/product-of-array-except-self) | [Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self) | [Rust](/solutions/product-of-array-except-self/src/main.rs) | Medium |
|
||||||
|
| [13](https://leetcode.com/problems/roman-to-integer) | [Roman to Integer](https://leetcode.com/problems/roman-to-integer) | [Java](/solutions/roman-to-integer/Solution.java) | Easy |
|
||||||
|
| [3](https://leetcode.com/problems/longest-substring-without-repeating-characters) | [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters) | [Java](/solutions/longest-substring-without-repeating-characters/Solution.java) | Medium |
|
||||||
|
| [387](https://leetcode.com/problems/first-unique-character-in-a-string) | [First Unique Character in a String](https://leetcode.com/problems/first-unique-character-in-a-string) | [Java](/solutions/first-unique-character-in-a-string/Solution.java), [Java (HashMap)](/solutions/first-unique-character-in-a-string/Solution_HashMap.java) | Easy |
|
||||||
|
| [1487](https://leetcode.com/problems/making-file-names-unique) | [Making File Names Unique](https://leetcode.com/problems/making-file-names-unique) | [Java](/solutions/making-file-names-unique/Solution.java), [Java (RegEx)](/solutions/making-file-names-unique/Solution_regex.java), [Python](/solutions/making-file-names-unique/Solution.py) | Medium |
|
||||||
|
| [451](https://leetcode.com/problems/sort-characters-by-frequency) | [Sort Characters By Frequency](https://leetcode.com/problems/sort-characters-by-frequency) | [Java](/solutions/sort-characters-by-frequency/Solution.java) | Medium |
|
||||||
|
|
||||||
<sub>
|
<sub>
|
||||||
Generated on 2023-10-08
|
Generated on 2023-10-08
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"title": "Add Two Numbers",
|
|
||||||
"solutions": [
|
"solutions": [
|
||||||
{
|
{
|
||||||
"name": "Java",
|
"name": "Java",
|
||||||
|
|||||||
12
solutions/first-unique-character-in-a-string/meta.json
Normal file
12
solutions/first-unique-character-in-a-string/meta.json
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Java (HashMap)",
|
||||||
|
"path": "Solution_HashMap.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/longest-palindromic-substring/meta.json
Normal file
8
solutions/longest-palindromic-substring/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/longest-string-chain/meta.json
Normal file
8
solutions/longest-string-chain/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
16
solutions/making-file-names-unique/meta.json
Normal file
16
solutions/making-file-names-unique/meta.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Java (RegEx)",
|
||||||
|
"path": "Solution_regex.java"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Python",
|
||||||
|
"path": "Solution.py"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/median-of-two-sorted-arrays/meta.json
Normal file
8
solutions/median-of-two-sorted-arrays/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Rust (Two Pointers)",
|
||||||
|
"path": "./src/bin/two-pointers.rs"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/palindrome-number/meta.json
Normal file
8
solutions/palindrome-number/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/product-of-array-except-self/meta.json
Normal file
8
solutions/product-of-array-except-self/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Rust",
|
||||||
|
"path": "./src/main.rs"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/reverse-integer/meta.json
Normal file
8
solutions/reverse-integer/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/roman-to-integer/meta.json
Normal file
8
solutions/roman-to-integer/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/sort-array-by-increasing-frequency/meta.json
Normal file
8
solutions/sort-array-by-increasing-frequency/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/sort-characters-by-frequency/meta.json
Normal file
8
solutions/sort-characters-by-frequency/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/string-to-integer-atoi/meta.json
Normal file
8
solutions/string-to-integer-atoi/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/two-sum/meta.json
Normal file
8
solutions/two-sum/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
solutions/zigzag-conversion/meta.json
Normal file
8
solutions/zigzag-conversion/meta.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"solutions": [
|
||||||
|
{
|
||||||
|
"name": "Java",
|
||||||
|
"path": "Solution.java"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user