Problem prefix stands for
Most of the problems come from the book Yongjun Luo & Weibin Guo.
- 
If you'd like to use algs4.jarin vscode, all you need to do is create alibfolder at the root of your workspace and move thealgs4.jarfile into it.
- 
How to disable black formatter for specific block of code? 
 Using# fmt: offand# fmt: on, more on black documentation.
- 
How to disable clang-format for specific block of code? 
 Using// clang-format offand// clang-format on, more on clang-format documentation.
- 
Quickly search problems find . -type f -name 'lc_307*' 
- 
Heap or priority queue in different languages: 
 See binary heap
