Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Jul 23, 2024
1 parent d6c5088 commit e2cd877
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion solutions/beecrowd/1165/1165.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import math


def is_prime(n):
if n == 2:
return True
Expand All @@ -16,4 +17,4 @@ def is_prime(n):

for _ in range(n):
x = int(input())
print(f"{x} eh primo" if is_prime(x) else f"{x} nao eh primo")
print(f'{x} eh primo' if is_prime(x) else f'{x} nao eh primo')

0 comments on commit e2cd877

Please sign in to comment.