From 1f11c4e7eb206afd02fc87861d6d6ac2a9659dd8 Mon Sep 17 00:00:00 2001 From: OGordoo Date: Thu, 12 Mar 2020 23:23:06 +0000 Subject: [PATCH] nenokku --- subjects/nenokku.en.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 subjects/nenokku.en.md diff --git a/subjects/nenokku.en.md b/subjects/nenokku.en.md new file mode 100644 index 000000000..f67080e05 --- /dev/null +++ b/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 +``` \ No newline at end of file