#include <iostream> #include <Windows.h> using namespace std; int Save(int _key, char *file); char* getCodeWithShift_key(i...
Recent post
Tuesday, 13 February 2018
Monday, 12 February 2018
Competitive Programming
2D matrix using vector:- vector <vector<int> > arr; arr.resize( row ,vector<int>( col )); // Use of "sort()...
Sunday, 28 January 2018
Check if the game is valid or not
Check if the game is valid or not Three players P1, P2 and P3 are playing a game. But at a time only two players can play the game, so ...