-
Notifications
You must be signed in to change notification settings - Fork 1
/
sting_challenge.cpp
51 lines (45 loc) · 1003 Bytes
/
sting_challenge.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
string toUppercase(string str){
for(int i=0;i<str.length();i++){
if(str[i]>'a'){
str[i]-=32;
}
}
return str;
}
int gcd(int a,int b){
while (b!=0)
{
int rem=a%b;
a=b;
b=rem;
}
return a;
}
int main(){
// string str="sdIOdSgesl";
// str=toUppercase(str);
// transform(str.begin(),str.end(),str.begin(),::tolower);
// cout<<str<<endl;
// string s="127759036";
// sort(s.begin(),s.end(),greater<int>());
// cout<<s<<endl;
// string s="avfofffef";
// int arr[26];
// for(int i=0;i<26;i++){
// arr[i]=0;
// }
// for(int i=0;i<s.length();i++){
// arr[s[i]-'a']++;
// }
// int max=0;
// for(int i=0;i<26;i++){
// if(arr[i]>arr[max])max=i;
// }
// cout<<"frequency "<<arr[max]<<endl;
// cout<<"alpha "<<(char)(max+97)<<endl;
cout<<gcd(2,36)<<endl;
}