Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 238 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 238 Bytes

Practice

Legend

Platform

CF - Codeforces AX - AlgoExpert

Languages

CPP - C++ (GNU) SCL - Scala

C++

To debug add macros

#define debug(x) cerr<<"[ "<<#x<<" "<<x<<" ]\n"

// then use
int k = 5;

debug(k);