Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 608 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 608 Bytes

Leetcode Notes:

Summary of question type:

  • Two pointer
  • Sliding window
  • Treenode
  • Listnode

Knowledge example:

Class:

Java HashMap

Map<Integer, Integer> map = new HashMap<>();
map.put(key, value)     // hash the value to key
map.containsKey(key)    // check if the key is stored in the map
map.get(key)            // get value for a specific key