Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Nov 21, 2024
1 parent c673577 commit 6e46ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutions/beecrowd/3303/3303.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys

for line in sys.stdin:
if len(line) <= 10:
if len(line.strip()) < 10:
print('palavrinha')
else:
print('palavrao')

0 comments on commit 6e46ca1

Please sign in to comment.