Category: Language

15
Jun
2017

Why Python is Not a Good OOP Language

Anonymous Answered Feb 22 I’ll go against popular opinion. I started with Python. I did all my…

11
Jun
2017

BigInteger in Java and C++

code: for c++ this link link or google search is good but i didn’t found any goood…

11
Jun
2017

Hackerearth Min-Max

code: #include<iostream> #include<cstdio> using namespace std; int main() { int n,flag=0; cin>>n; int a[n]; for(int i=0; i<n;…

07
Jun
2017

C++ Vector push_back()…pop_back()

#include<vector> #include<iostream> using namespace std; int main() { vector<string> list; cout<<“Please enter the names, press Q to…

05
Jun
2017

Algo – Linked List

Best Video Explained: code: some bugs  here but understood the implementation: #include<bits/stdc++.h> void display(void); void addatbegin(void); void…

03
Jun
2017

Algorithm: Euler’s GCD

code: int euclid_gcd(int a,int b) { int dividend,divisor,remainder; dividend = a>=b?a:b; divisor= a<=b?a:b; while(divisor!=0) { remainder=dividend%divisor; dividend=divisor;…