Restructure README with personal learning journey and create automated notes system

This commit is contained in:
Carlos
2025-07-11 12:08:38 -04:00
parent 7668031879
commit 75a5235659
79 changed files with 1941 additions and 441 deletions

22
src/notes/001_two_sum.md Normal file
View File

@@ -0,0 +1,22 @@
# Two Sum
**Problem Number:** 1
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Add Two Numbers
**Problem Number:** 2
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Longest Substring Without Repeating Characters
**Problem Number:** 3
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Median of Two Sorted Arrays
**Problem Number:** 4
**Difficulty:** Hard
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Longest Palindromic Substring
**Problem Number:** 5
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Zigzag Conversion
**Problem Number:** 6
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Reverse Integer
**Problem Number:** 7
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Palindrome Number
**Problem Number:** 9
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Regular Expression Matching
**Problem Number:** 10
**Difficulty:** Hard
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Container With Most Water
**Problem Number:** 11
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Roman to Integer
**Problem Number:** 13
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Longest Common Prefix
**Problem Number:** 14
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

22
src/notes/015_3sum.md Normal file
View File

@@ -0,0 +1,22 @@
# 3Sum
**Problem Number:** 15
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Valid Parentheses
**Problem Number:** 20
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Merge Two Sorted Lists
**Problem Number:** 21
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Generate Parentheses
**Problem Number:** 22
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Find the Index of the First Occurrence in a String
**Problem Number:** 28
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Search Insert Position
**Problem Number:** 35
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Valid Sudoku
**Problem Number:** 36
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Trapping Rain Water
**Problem Number:** 42
**Difficulty:** Hard
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Jump Game II
**Problem Number:** 45
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

22
src/notes/050_powx_n.md Normal file
View File

@@ -0,0 +1,22 @@
# Pow(x, n)
**Problem Number:** 50
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Jump Game
**Problem Number:** 55
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

22
src/notes/066_plus_one.md Normal file
View File

@@ -0,0 +1,22 @@
# Plus One
**Problem Number:** 66
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

22
src/notes/069_sqrtx.md Normal file
View File

@@ -0,0 +1,22 @@
# Sqrt(x)
**Problem Number:** 69
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Search a 2D Matrix
**Problem Number:** 74
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Remove Duplicates from Sorted Array II
**Problem Number:** 80
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Merge Sorted Array
**Problem Number:** 88
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Gray Code
**Problem Number:** 89
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Subsets II
**Problem Number:** 90
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Decode Ways
**Problem Number:** 91
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Reverse Linked List II
**Problem Number:** 92
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Minimum Absolute Difference
**Problem Number:** 1200
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Best Time to Buy and Sell Stock
**Problem Number:** 121
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Best Time to Buy and Sell Stock II
**Problem Number:** 122
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Valid Palindrome
**Problem Number:** 125
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Longest Consecutive Sequence
**Problem Number:** 128
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Maximum Candies You Can Get from Boxes
**Problem Number:** 1298
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

22
src/notes/135_candy.md Normal file
View File

@@ -0,0 +1,22 @@
# Candy
**Problem Number:** 135
**Difficulty:** Hard
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Linked List Cycle
**Problem Number:** 141
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Max Points on a Line
**Problem Number:** 149
**Difficulty:** Hard
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Evaluate Reverse Polish Notation
**Problem Number:** 150
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Find Minimum in Rotated Sorted Array
**Problem Number:** 153
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Min Stack
**Problem Number:** 155
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Two Sum II - Input Array Is Sorted
**Problem Number:** 167
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Majority Element
**Problem Number:** 169
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Factorial Trailing Zeroes
**Problem Number:** 172
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Maximum Number of Accepted Invitations
**Problem Number:** 1820
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Rotate Array
**Problem Number:** 189
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Happy Number
**Problem Number:** 202
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Kth Smallest Product of Two Sorted Arrays
**Problem Number:** 2040
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Kth Distinct String in an Array
**Problem Number:** 2053
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Isomorphic Strings
**Problem Number:** 205
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Reverse Linked List
**Problem Number:** 206
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Check if a Parentheses String Can Be Valid
**Problem Number:** 2116
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Contains Duplicate
**Problem Number:** 217
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Contains Duplicate II
**Problem Number:** 219
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Summary Ranges
**Problem Number:** 228
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Partition Array Such That Maximum Difference Is K
**Problem Number:** 2294
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Product of Array Except Self
**Problem Number:** 238
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Valid Anagram
**Problem Number:** 242
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Shortest Word Distance
**Problem Number:** 243
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Largest Positive Integer That Exists With Its Negative
**Problem Number:** 2441
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Shortest Word Distance II
**Problem Number:** 244
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Shortest Word Distance III
**Problem Number:** 245
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Strobogrammatic Number
**Problem Number:** 246
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Strobogrammatic Number III
**Problem Number:** 248
**Difficulty:** Hard
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Minimize the Maximum Difference of Pairs
**Problem Number:** 2616
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Word Pattern
**Problem Number:** 290
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Divide Array Into Arrays With Max Difference
**Problem Number:** 2966
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Maximum Difference Between Even and Odd Frequency I
**Problem Number:** 3442
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Maximum Difference Between Even and Odd Frequency II
**Problem Number:** 3445
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Ransom Note
**Problem Number:** 383
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Is Subsequence
**Problem Number:** 392
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Binary Search
**Problem Number:** 704
**Difficulty:** Easy
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Koko Eating Bananas
**Problem Number:** 875
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*

View File

@@ -0,0 +1,22 @@
# Satisfiability of Equality Equations
**Problem Number:** 990
**Difficulty:** Medium
**Category:**
## Problem Description
## My Approach
## Solution
## Time & Space Complexity
## Key Insights
## Mistakes Made
## Related Problems
---
*Note: This is a work in progress. I'll add more details as I reflect on this problem.*