hh2048 / XCPC

XCPC模板库
GNU General Public License v3.0
101 stars 8 forks source link

Are you aware of Jiangly's Debug Template? #2

Closed piyush26c closed 1 month ago

piyush26c commented 1 month ago

@hh2048 First, thank you for summarizing all of Jiangly's CP templates in one repository.

My Request: Please share the debug template used by Jiangly, if it exist. Or comment on how the coder Jiangly debug the code?

hh2048 commented 1 month ago

Unfortunately, from my observation, jiangly doesn't have a dedicated code debugging template (you can see his competition screen recordings on jiangly's personal video platform ), and generally uses cerr to simulate intermittent code runs. If you need a debugging template, you can search for tourist's approach (his code introduces a local file “algo/debug.h”), and there are quite a few contestants who have shared their code in this blog on codeforces; of course, I have a version of my own in my codebase for reference. Thanks for your interest in my codebase, and hope this helps.~

piyush26c commented 1 month ago

Thank you for the comment @hh2048.