From a1b8ff188923692bb87307a5fb0676f1a328c9ed Mon Sep 17 00:00:00 2001 From: izikorgad Date: Mon, 3 Mar 2025 15:51:20 +0200 Subject: [PATCH] fix 07-find.cpp wrong output The output for set was wrong --- 07-strings-containers-and-views.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/07-strings-containers-and-views.md b/07-strings-containers-and-views.md index 516aa9f..a660e92 100644 --- a/07-strings-containers-and-views.md +++ b/07-strings-containers-and-views.md @@ -394,11 +394,11 @@ vector: 1 9 7 3 set: 3 4 6 8 Found in string at position: 2 Found in vector: 7 -Found in set: 4 +Found in set: 6 After: string: helo vector: 1 9 3 -set: 3 6 8 +set: 3 4 8 ``` Take time to study this program as it contains some important concepts: