Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a1b8ff1

Browse files
authored
fix 07-find.cpp wrong output
The output for set was wrong
1 parent 30c2048 commit a1b8ff1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

07-strings-containers-and-views.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,11 +394,11 @@ vector: 1 9 7 3
394394
set: 3 4 6 8
395395
Found in string at position: 2
396396
Found in vector: 7
397-
Found in set: 4
397+
Found in set: 6
398398
After:
399399
string: helo
400400
vector: 1 9 3
401-
set: 3 6 8
401+
set: 3 4 8
402402
```
403403

404404
Take time to study this program as it contains some important concepts:

0 commit comments

Comments
 (0)