LeetCode Study Tracker

LeetCode Study Tracker

# Title Difficulty Category Solved Date Notes/Approach Status Note Link
55 Jump Game Medium Greedy/DP 2024-12-30 Greedy: Track farthest index Link

Legend:

  • #: Question number on LeetCode.
  • Title: Name of the problem.
  • Difficulty: Easy, Medium, or Hard.
  • Category: Relevant data structures/algorithm used.
  • Solved Date: The date you solved or studied the question.
  • Notes/Approach: Explanation of how you solved it or notes for future reference.
  • Status:
    • ✅ = Solved
    • ❌ = Still working on it

LeetCode Study Tracker Example

LeetCode Study Tracker

# Title Difficulty Category Solved Date Notes/Approach Status
1 Two Sum Easy Arrays YYYY-MM-DD Used hash map for O(n) solution
55 Jump Game Medium Greedy/DP YYYY-MM-DD Greedy: Track farthest index
121 Best Time to Buy and Sell Stock Easy Arrays/Greedy YYYY-MM-DD Track min price, max profit
322 Coin Change Medium Dynamic Programming YYYY-MM-DD DP: Bottom-up approach
53 Maximum Subarray Easy Dynamic Programming YYYY-MM-DD Used Kadane’s Algorithm
200 Number of Islands Medium Graph/DFS YYYY-MM-DD Used DFS to count connected components
3 Longest Substring Without Repeating Characters Medium Strings/Sliding Window YYYY-MM-DD Two-pointer sliding window technique
70 Climbing Stairs Easy Dynamic Programming YYYY-MM-DD Fibonacci DP approach

Legend:

  • #: Question number on LeetCode.
  • Title: Name of the problem.
  • Difficulty: Easy, Medium, or Hard.
  • Category: Relevant data structures/algorithm used.
  • Solved Date: The date you solved or studied the question.
  • Notes/Approach: Explanation of how you solved it or notes for future reference.
  • Status:
    • ✅ = Solved
    • ❌ = Still working on it

寫筆記的方法

今天看完了一本叫《知道做到:自學的科學》的書,我在書中學到挺多乾貨和受到不少的激勵。我在這書中最大的兩個得着是SQ3R法和康奈尔筆記法。

SQ3R法

  • S: 調查
  • Q: 提問
  • R: 閱讀
  • R:背誦
  • R:復習

康奈尔筆記法

提示栏(Cues) 笔记栏(Notes)
关键词、问题、主题 详细记录、讲解要点、例子等
例如: - 概念1:描述、例子
- 主要关键词1 - 概念2:说明
- 关键问题1 - 图表、数据、说明等

总结栏(Summary)

总结本页内容的核心概念与主要观点,简明扼要地整理重点。

0%