cp-library

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

View the Project on GitHub kobejean/cp-library

:heavy_check_mark: cp_library/alg/dp/min2_fn.py

Required by

Verified with

Code

import cp_library.alg.dp.__header__

def min2(a, b):
    return a if a < b else b
'''
╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸
             https://kobejean.github.io/cp-library               
'''

def min2(a, b):
    return a if a < b else b
Back to top page