Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 709 Bytes

File metadata and controls

32 lines (26 loc) · 709 Bytes

My LeetCode Solutions Record.

Directory Structure

The solution code is distributed in two locations:

  1. Some solutions are in src/main/java, with corresponding test cases in src/main/test. This code can be executed through maven (e.g., mvn clean test)

  2. Other solutions are in src/main/leetcode/editor/cn, which follows the file format generated by the IntelliJ-IDEA/VSCode LeetCode plugin, containing another set of solution code

Tags

  • TwoPointers
  • SlidingWindow
  • BinarySearch
  • DP
  • Backtracking
  • DFS
  • BFS
  • LinkedList
  • Tree
  • Graph
    • TopologicalSorting
    • GraphSearch
  • UnionFindSet
  • Sorting
  • MISC
    • Array
    • Hashing
    • Stack
    • Queue
    • BitManipulation