Skip to content

Commit 8e958fe

Browse files
chore(leetcode75): scaffolding
1 parent 2b3df74 commit 8e958fe

File tree

76 files changed

+1043
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1043
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Container With Most Water (https://leetcode.com/problems/container-with-most-water/)
2+
# Difficulty: Medium
3+
# Tags: Array, Two Pointers, Greedy
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Letter Combinations of a Phone Number (https://leetcode.com/problems/letter-combinations-of-a-phone-number/)
2+
# Difficulty: Medium
3+
# Tags: Hash Table, String, Backtracking
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Unique Paths (https://leetcode.com/problems/unique-paths/)
2+
# Difficulty: Medium
3+
# Tags: Math, Dynamic Programming, Combinatorics
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Edit Distance (https://leetcode.com/problems/edit-distance/)
2+
# Difficulty: Medium
3+
# Tags: String, Dynamic Programming
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Maximum Depth of Binary Tree (https://leetcode.com/problems/maximum-depth-of-binary-tree/)
2+
# Difficulty: Easy
3+
# Tags: Tree, Depth-First Search, Breadth-First Search, Binary Tree
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Single Number (https://leetcode.com/problems/single-number/)
2+
# Difficulty: Easy
3+
# Tags: Array, Bit Manipulation
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Reverse Words in a String (https://leetcode.com/problems/reverse-words-in-a-string/)
2+
# Difficulty: Medium
3+
# Tags: Two Pointers, String
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Find Peak Element (https://leetcode.com/problems/find-peak-element/)
2+
# Difficulty: Medium
3+
# Tags: Array, Binary Search
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# House Robber (https://leetcode.com/problems/house-robber/)
2+
# Difficulty: Medium
3+
# Tags: Array, Dynamic Programming
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Binary Tree Right Side View (https://leetcode.com/problems/binary-tree-right-side-view/)
2+
# Difficulty: Medium
3+
# Tags: Tree, Depth-First Search, Breadth-First Search, Binary Tree

0 commit comments

Comments
 (0)