Category: Pore Abar Bujhbo

07
Jul
2017

Radix Sort

best video: pseudocode: Radix-Sort(A, d) //It works same as counting sort for d number of passes. //Each…

14
Jun
2017

Hackerearth – Jarvis and Numbers

code i have understand for last 6 hours: problem statement was little bit clumsy but understood atlast:…

13
Jun
2017

Codeforces: A. Next Round

My code: didn’t passed all testcase: #include<bits/stdc++.h> using namespace std; int main() { int n,k; int a[100];…

11
Jun
2017

HAckerearth – HAWKEYE AND FLOODFILL ⇾⚄ (EASY)

code: #include<bits/stdc++.h> using namespace std; int main() { int n; int i,j; long int p; cin>>n>>i>>j>>p; for(int…

09
Jun
2017

Stevie Hackerearth

code: #include<bits/stdc++.h> using namespace std; #define ll long long #define pb push_back #define mp make_pair #define ff…

21
May
2017

Array of String

theortecical concept source: http://stackoverflow.com/questions/20347170/char-array-and-char-array code: char *array = “One good thing about music”; char array[] = {“One”,…