this post was submitted on 13 May 2024
3 points (58.8% liked)

C++

1732 readers
8 users here now

The center for all discussion and news regarding C++.

Rules

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 4 points 4 months ago (1 children)

I got stuck on cheese counting:

inventory.count(cheeseName) == 1 ? "Yes" : "No"

1 cheese == some, 2 cheese == none :/

[โ€“] [email protected] 2 points 4 months ago

Yeah, that's confusing to read. A hashset can only contain at most one of each cheese kind, in c++20 you can write inventory.contains(cheeseName), before that you had to use .count or inventory.find(cheeseName) != inventory.end() or something like that