cook the code: competitive programming
Showing posts with label competitive programming. Show all posts
Showing posts with label competitive programming. Show all posts

Monday, 12 February 2018

Competitive Programming

2D matrix using vector:-  vector <vector<int> > arr; arr.resize( row ,vector<int>( col )); // Use of "sort()...
Read More

Monday, 8 January 2018

program to calculate pow(x,n)

Write a program to calculate pow(x,n):- Given two integers x and n, write a function to compute x n . We may assume that x and n are ...
Read More