#include <iostream>
using namespace std;
int prod(int a, int b) {
return a * b;
}
int main(){
cout << prod(10, 20) << endl;
return 0;
}
Output-
200
class Solution { public int removeDuplicates ( int [] nums ) { // base case: return if array have no el. if ( nums...
No comments:
Post a Comment