Skip to content

Commit 5d17038

Browse files
committed
Fix lint
1 parent 8ba3ea7 commit 5d17038

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

solutions/beecrowd/1534/1534.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
n = int(line)
55
for i in range(n):
66
for j in range(n):
7-
if i == j and i + j == n - 1:
8-
print(2, end="")
7+
if i == j and i + j == n - 1:
8+
print(2, end='')
99
elif i == j:
10-
print(1, end="")
10+
print(1, end='')
1111
elif i + j == n - 1:
12-
print(2, end="")
12+
print(2, end='')
1313
else:
14-
print(3, end="")
14+
print(3, end='')
1515
print()

solutions/beecrowd/1541/1541.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
break
77

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

0 commit comments

Comments
 (0)