cp-library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub kobejean/cp-library

:warning: cp_library/vis/debug_fn.py

Code

import cp_library.vis.__header__

def debug(*args, **kwargs):
    if debug.on:
        print(*args, **kwargs)
debug.on = False
'''
╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸
             https://kobejean.github.io/cp-library               
'''

def debug(*args, **kwargs):
    if debug.on:
        print(*args, **kwargs)
debug.on = False
Back to top page