Month: June 2017

12
Jun
2017

Print Hackerearth

I am implementing the solution after seeing the code: #include<iostream> #include<bits/stdc++.h> using namespace std; int main() {…

12
Jun
2017

Hackerearth : Digit Problem

code: #include<bits/stdc++.h> using namespace std; int main() { char x[1000]; int k; scanf(“%s %d”,x,&k); for(int i=0; i<k;…

11
Jun
2017

10579 Fibonacci Numbers

code: import java.math.BigInteger; import java.util.Scanner; /** * Created by Zaki on 6/11/2017. */ public class Uva_Fibonacci {…

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;…

11
Jun
2017

10523 – Very Easy !!!

C++ Code: But it will not work as c++ don’t support BigIntger so we have to write…