Skip to content

Commit 8cf3eac

Browse files
committed
Algorithms: Searching
1 parent ccc77b2 commit 8cf3eac

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# The grandest stage of all, Wrestlemania XXX recently happened. And with it, happened one of the biggest heartbreaks
2+
# for the WWE fans around the world. The Undertaker's undefeated streak was finally over.
3+
#
4+
# Now as an Undertaker fan, you're disappointed, disheartened and shattered to pieces. And Little Jhool doesn't want to
5+
# upset you in any way possible. (After all you are his only friend, true friend!) Little Jhool knows that you're still
6+
# sensitive to the loss, so he decides to help you out.
7+
#
8+
# Every time you come across a number, Little Jhool carefully manipulates it. He doesn't want you to face numbers which
9+
# have "21" as a part of them. Or, in the worst case possible, are divisible by 21.
10+
#
11+
# If you end up facing such a number you feel sad... and no one wants that - because you start chanting "The streak is
12+
# broken!" , if the number doesn't make you feel sad, you say, "The streak lives still in our heart!"
13+
#
14+
# Help Little Jhool so that he can help you!
15+
#
16+
# Input Format:
17+
# The first line contains a number, t, denoting the number of test cases.
18+
# After that, for t lines there is one number in every line.
19+
#
20+
# Output Format:
21+
# Print the required string, depending on how the number will make you feel.
22+
#
23+
# Constraints:
24+
# 1 ≤ t ≤ 100
25+
# 1 ≤ n ≤ 1000000
26+
#
27+
# SAMPLE INPUT
28+
# 3
29+
# 120
30+
# 121
31+
# 231
32+
#
33+
# SAMPLE OUTPUT
34+
# The streak lives still in our heart!
35+
# The streak is broken!
36+
# The streak is broken!
37+
38+
for _ in range(int(input())):
39+
num = input()
40+
if (int(num)% 21 == 0) or ('21' in num):
41+
print('The streak is broken!')
42+
else:
43+
print('The streak lives still in our heart!')

0 commit comments

Comments
 (0)