Skip to content

Commit efc1bc9

Browse files
committed
Code line length review
1 parent 2ec2d21 commit efc1bc9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

kattis/Suspension Bridges/suspensionbridges.vn.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ def l(epsilon):
2222
# d_l/d_epsilon to figure out tol_epsilon(tol_l)
2323
tol_epsilon = (tol ** 3) / (2 * s)
2424
iterations = ceil(log2(1/tol_epsilon))
25-
# Btw, for binary search the interval size is (upper_bound - lower_bound) / step
25+
# Btw, for binary search the interval size is
26+
# (upper_bound - lower_bound) / step
2627
# step = 1 for integers.
2728

2829
for _ in range(iterations):

0 commit comments

Comments
 (0)