Skip to content

Commit cb17a48

Browse files
authored
Update README.md
1 parent ed65ade commit cb17a48

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@
2828
- Find:- s1.find(s2[i])!=string::npos:- it means <find s2[i] in s1> is present
2929

3030
- token:- stringstream
31-
ex: string s = "geeks for geeks";
32-
stringstream ss(s); // Used for breaking words
33-
string word; // to store individual words
34-
while (ss >> word)
35-
cout << word << endl;
36-
31+
ex: <br>string s = "geeks for geeks";
32+
stringstream ss(s); // Used for breaking words <br>
33+
string word; // to store individual words <br>
34+
while (ss >> word) <br>
35+
cout << word << endl; <br>
36+
37+
- next_permutation()
3738

3839

3940

0 commit comments

Comments
 (0)