[ prog / sol / mona ]

prog


Post macros.

32 2020-08-15 11:16

#define loop(s,n,args...) for(int i=s;i<n;i++){args;}

There's no reason for the args, just do

#define loop(s, n) for (int __i = (s), __n = (n); __i < __n; ++__i)
40


VIP:

do not edit these