Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.33 KB

README.md

File metadata and controls

35 lines (26 loc) · 1.33 KB

Algorithm Arena

missing image

Problem prefix stands for

Most of the problems come from the book Yongjun Luo & Weibin Guo.

FAQs & Tips

  • If you'd like to use algs4.jar in vscode, all you need to do is create a lib folder at the root of your workspace and move the algs4.jar file into it.

  • How to disable black formatter for specific block of code?
    Using # fmt: off and # fmt: on, more on black documentation.

  • How to disable clang-format for specific block of code?
    Using // clang-format off and // clang-format on, more on clang-format documentation.

  • Quickly search problems

    find . -type f -name 'lc_307*'