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.
|
|
|
## 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
|
Refactor & Beautify & destruction commit
return early, remove else branches, reorder conditions and top-level functions, remove empty lines, remove unnecessary append(), fix typos, stop using testing package, remove dead code, fix mistakes in subjects, tests and solutions, remove disclaimers, reformat comments, simplify solutions, tests, add more instructions to subjects, remove obsolete files, etc.
Some of the reasons behind those modifications will be added to good-practices.en.md
Some of the exercises are now broken, they will have to be fixed, most of them have a "TODO:" comment.
5 years ago
|
|
|
$ ./main "? love" "? is" "A loveis" "? love" "? Who" "A Whoareyou" "? is"
|
|
|
|
NO
|
|
|
|
NO
|
|
|
|
YES
|
|
|
|
NO
|
|
|
|
YES
|
|
|
|
```
|