cpplib

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

View the Project on GitHub edge2992/cpplib

:heavy_check_mark: macros.hpp

Verified with

Code

#pragma once
#define rep(i, n) for (int i = 0; i < (n); i++)
#line 2 "macros.hpp"
#define rep(i, n) for (int i = 0; i < (n); i++)
Back to top page