Browse Source

Merge pull request #509 from 01-edu/nenokku

nenokku
content-update
LEEDASILVA 4 years ago committed by GitHub
parent
commit
1f8e77a5c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      subjects/nenokku.en.md

20
subjects/nenokku.en.md

@ -0,0 +1,20 @@
## nenokku
### Instructions
You are given unknown amount of operations. There are 3 types of operations, you should handle each appropriately:
1. "A word" - add the "word" into your "dictionary" of words.
2. "? word" - check if the "word" is in your "dictionary".
3. "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.
```console
$> ./main "? love" "? is" "A loveis" "? love" "? Who" "A Whoareyou" "? is"
NO
NO
YES
NO
YES
```
Loading…
Cancel
Save