Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Nov 20, 2024
1 parent 8ba3ea7 commit 5d17038
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions solutions/beecrowd/1534/1534.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
n = int(line)
for i in range(n):
for j in range(n):
if i == j and i + j == n - 1:
print(2, end="")
if i == j and i + j == n - 1:
print(2, end='')
elif i == j:
print(1, end="")
print(1, end='')
elif i + j == n - 1:
print(2, end="")
print(2, end='')
else:
print(3, end="")
print(3, end='')
print()
2 changes: 1 addition & 1 deletion solutions/beecrowd/1541/1541.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
break

a, b, c = map(int, line.split())
print(f"{math.floor(math.sqrt((100 * a * b) / c))}")
print(f'{math.floor(math.sqrt((100 * a * b) / c))}')

0 comments on commit 5d17038

Please sign in to comment.