__shivam_kumar's blog

By __shivam_kumar, history, 23 months ago, In English

yes you heared it right this dude named nitin kukreti on this youtube channel streamed todays contest (CodeCraft-22 and Codeforces Round #795 (Div 2.)) for 2 hours straight, and also solved 2 question, it is a humble request to everyone reading this to please dislike the video on youtube and report it and I also request mike mirzayanov to please ban his account.

Full text and comments »

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

By __shivam_kumar, history, 23 months ago, In English

can anyone pls share any sheet or practice problems link or anything (easy -> medium -> hard) so that I can solve loads and loads of problems from dynamic programming, it would really help me improve dynamic programming, thank you :)

Full text and comments »

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

By __shivam_kumar, history, 2 years ago, In English

you cannot do nesting of post-increment operator whereas pre-increment nesting does not cause any problem

conclusion : never do post increment nesting

eg :

int a = 10;

 cout<<(++(++a))<<"\n";// valid in c++

 cout<<((a++)++); // in-valid in c++

Full text and comments »

Tags c++
  • Vote: I like it
  • -21
  • Vote: I do not like it