mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Clement Denis
26b3a37cc0
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
nenokku
Instructions
You are given unknown amount of operations. There are 3 types of operations, you should handle each appropriately:
- "A word" - add the "word" into your "dictionary" of words.
- "? word" - check if the "word" is in your "dictionary".
- "x word" - end of operations.
Intersection of words is counted as if it is in your dictionary (see example). Write a program that takes as arguments operations.
$ ./main "? love" "? is" "A loveis" "? love" "? Who" "A Whoareyou" "? is"
NO
NO
YES
NO
YES