diff --git a/src/desiigner.py b/src/desiigner.py new file mode 100644 index 0000000..eb69890 --- /dev/null +++ b/src/desiigner.py @@ -0,0 +1,10 @@ +s = input() +if ( + s.startswith("b") + and s[-1] in "aeiouy" + and set(s[1:-1]) == {"r"} + and len(s[1:-1]) >= 2 +): + print("Jebb") +else: + print("Neibb") diff --git a/src/heimilisverk.py b/src/heimilisverk.py new file mode 100644 index 0000000..d5021ba --- /dev/null +++ b/src/heimilisverk.py @@ -0,0 +1,7 @@ +n = int(input()) +l = {} +for _ in range(n): + s = input() + if s not in l: + print(s) + l[s] = True