removing-stars-from-a-string 1.0.0
Removing Stars From a String
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
 

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 22 of file main.cpp.

23{
24 string s("leet**cod*e");
25 // string s("erase*****");
26 cout << "output: " << Solution().removeStars(s) << endl;
27 return 0;
28}
string removeStars(string s)
Definition main.cpp:8

References Solution::removeStars().