Problem prefix stands for
Most of the problems come from the book Yongjun Luo & Weibin Guo.
-
If you'd like to use
algs4.jar
in vscode, all you need to do is create alib
folder at the root of your workspace and move thealgs4.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.