Skip to content

Commit

Permalink
Merge pull request #7 from SKTT1Ryze/fix/two_sum
Browse files Browse the repository at this point in the history
fix easy
  • Loading branch information
SKTT1Ryze authored Oct 13, 2023
2 parents 4b79387 + 431c0bf commit 86d3849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leetcode/src/problems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub enum Difficulty {
impl From<Difficulty> for String {
fn from(val: Difficulty) -> Self {
match val {
Difficulty::Easy => "easy".into(),
Difficulty::Easy => "Easy".into(),
Difficulty::Medium => "Medium".into(),
Difficulty::Hard => "Hard".into(),
}
Expand Down

0 comments on commit 86d3849

Please sign in to comment.