Hackerrank Counting Valleys Problem Solution

HackerRank Counting Valleys Problem Solution in C#include<stdio.h> int main() { int n,valley=0,i; scanf("%d",&n); char arr[n]; scanf("%s",arr); int level = 0; int starts=0; for(i=0;i<n;i++) { if(level == 0 &&...
July 27, 2024

HackerRank Drawing Book Problem Solution

 HackerRank Drawing Book Problem Solution in C#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> int main(){ int n; scanf("%d",&n); int p; scanf("%d",&p);...
May 20, 2024

HackerRank Sales by Match Problem Solution

 HackerRank Sales by Match Problem Solution in C#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> int main(){ int n,i,j,count=1,sum=0; scanf("%d",&n); int *c...
May 20, 2024

HackerRank Bill Division Problem Solution

 HackerRank Bill Division Problem Solution in C#include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> int main() { /* Enter your code here. Read input from STDIN. Print output...
May 20, 2024

HackerRank Day of the Programmer Problem Solution

 HackerRank Day of the Programmer Problem Solution C Solution#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> void solve(int year){ // Complete this...
May 20, 2024

HackerRank Migratory Birds Problem Solution

 HackerRank Migratory Birds Problem Solution in C#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> int main(){ int n; scanf("%d",&n); int *types =...
May 07, 2024

HackerRank Divisible Sum Pairs Problem Solution

 HackerRank Divisible Sum Pairs Problem Solution in C#include <stdio.h> #include <stdlib.h> int main() { int n,k,i,j; int c=0; scanf("%d%d",&n,&k); int arr[n]; for(i=0;i<n;i++) { scanf("%d",&arr[i]); } for(i=0;i<n-1;i++) { for(j=i+1;j<n;j++)...
May 07, 2024

HackerRank Subarray Division Problem Solution

 HackerRank Subarray Division Problem Solution in C#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> int main() { int n,res=0,sum=0,i,j; scanf("%d",&n); int *s...
May 07, 2024

HackerRank Breaking the Records Problem Solution

 HackerRank Breaking the Records Problem Solution in C#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> int main(){ int n; int min, max,...
May 07, 2024

HackerRank Between Two Sets Problem Solution

 HackerRank Between Two Sets Problem Solution in C#include <stdio.h> long long gcd(long long a, long long b); long long lcm(long long a, long long b); int main() {...
May 07, 2024

HackerRank Number Line Jumps Problem Solution

 HackerRank Number Line Jumps Problem Solution in C#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> int main(){ int x1; int v1; int...
May 07, 2024

HackerRank Apple and Orange Problem Solution

 HackerRank Apple and Orange Problem Solution in C#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <stdbool.h> int main(){ int s; int t; scanf("%d...
May 07, 2024

Hackerrank Grading Students Problem Solution

 Hackerrank Grading Students Problem Solution in C#include <stdio.h> int main(void) { // your code goes here int t,n,i,ans; scanf("%d",&t); for(i=1;i<=t;i++) { scanf("%d",&n); if(n<38 || n%5==0 || n%5==1 ||...
May 07, 2024

HackerRank Time Conversion Problem Solution

 HackerRank Time Conversion Problem Solution in C#include <stdio.h>#include <string.h> #include <math.h> #include <stdlib.h> int main() { /* Enter your code here. Read input from STDIN. Print output to...
May 05, 2024