sum-of-digits-of-string-after-convert 1.0.0
Sum of Digits of String After Convert
Loading...
Searching...
No Matches
main.cpp File Reference
#include <bits/stdc++.h>
Include dependency graph for main.cpp:

Go to the source code of this file.

Data Structures

class  Solution
 

Typedefs

typedef long long ll
 

Functions

int main ()
 

Typedef Documentation

◆ ll

typedef long long ll

Definition at line 5 of file main.cpp.

Function Documentation

◆ main()

int main ( )

Definition at line 50 of file main.cpp.

51{
52 string s = "fleyctuuajsr";
53 int k = 5;
54 cout << "output: " << Solution().getLucky(s, k) << endl;
55 return 0;
56}
int getLucky(string s, int k)
Definition main.cpp:35

References Solution::getLucky().