Correct the element value into set | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Correct the element value into set

Tried to implement correcting data into set. https://code.sololearn.com/cYegYCyWDedx Is this the way or there is better solution for this? Edit : Basically my question is about below line : auto itr = s.find("Sachin Ganguly"); if (itr != s.end()) s.erase(itr); s.insert("Sachin Tendulkar"); Can I optimize this as I am trying to do same twice for two different entries. I know that we can't modify value after getting iterator I guess for map and set

9th Mar 2022, 6:07 AM
Ketan Lalcheta
Ketan Lalcheta - avatar
3 Answers
+ 1
Ketan, What was meant by correct? is there something incorrect in the code?
9th Mar 2022, 11:48 AM
Ipang
0
You can consider this as use case to modify value present into set.... Consider this as data value to be corrected... We are getting "ABC" as one element value but it was needed as "BD".... We can't change value to BD when we inserted into set but later on same need to be modified
9th Mar 2022, 11:55 AM
Ketan Lalcheta
Ketan Lalcheta - avatar
0
Updated question with code lines what I am looking for to optimize .
9th Mar 2022, 2:44 PM
Ketan Lalcheta
Ketan Lalcheta - avatar