-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathslope.c
31 lines (25 loc) · 965 Bytes
/
slope.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Given a number n,find the slope of the given number.
// Note : slope of a number is the number of minima and maxima digits.
// A digit is called a minima if the digit is lesser than the digit before and after it.
// Similarly a digit is called a maxima if the digit is greater than the digit before and after it.
#include<stdio.h>
#include<string.h>
int slopeOfNumber(char* number ,int n){
int slope = 0;
// loop from the second digit till the last second digit.
for(int i=1;i<n-1;i++)
if(number[i] > number[i-1] && number[i] > number[i+1]) //finding the maxima
slope++;
else if(number[i] < number[i-1] && number[i] < number[i+1]) //finding minima
slope++;
return slope;
}
// Driver code
int main(){
char* number = "1213321";
int n = strlen(number);
printf("slope of %s is %d",number,slopeOfNumber(number , n));
return 0;
}
// slope of 1213321 is 2
// slope of 273299302236131 is 6