Rinnegan77's blog

By Rinnegan77, history, 3 years ago, In English

Can anyone Help in this SPOJ problem, DIVSUM2...

DIVSUM2

Full text and comments »

  • Vote: I like it
  • +1
  • Vote: I do not like it

By Rinnegan77, history, 4 years ago, In English

***************************************************************************************** void DBG() { cerr << "]" << endl; } template<class H, class... T> void DBG(H h, T... t) { cerr << to_string(h); if (sizeof...(t)) cerr << ", "; DBG(t...); }

ifdef _DEBUG

define dbg(...) cerr << "LINE(" << LINE << ") -> [" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__)

else

define dbg(...) 0

endif


Full text and comments »

  • Vote: I like it
  • -17
  • Vote: I do not like it