Category: Adhoc/Brute Force

02
Jul
2017

Hackerearth: COUNT NUMBERS

code: #include<bits/stdc++.h> using namespace std; int main() { int t,n,i,a; string s; cin>>t; while(t–) { int c=0;…

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() {…

07
Jun
2017

Basics of Implementation – Hackerearth

Vowel count in a string: code: #include<iostream> #include<cstdio> using namespace std; int main() { int a=0,e=0,i=0,o=0,u=0; string…