2D matrix using vector:- vector <vector<int> > arr; arr.resize( row ,vector<int>( col )); // Use of "sort()...
Showing posts with label competitive programming. Show all posts
Showing posts with label competitive programming. Show all posts
Monday, 12 February 2018
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 ...