We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec2d21 commit efc1bc9Copy full SHA for efc1bc9
1 file changed
kattis/Suspension Bridges/suspensionbridges.vn.py
@@ -22,7 +22,8 @@ def l(epsilon):
22
# d_l/d_epsilon to figure out tol_epsilon(tol_l)
23
tol_epsilon = (tol ** 3) / (2 * s)
24
iterations = ceil(log2(1/tol_epsilon))
25
-# Btw, for binary search the interval size is (upper_bound - lower_bound) / step
+# Btw, for binary search the interval size is
26
+# (upper_bound - lower_bound) / step
27
# step = 1 for integers.
28
29
for _ in range(iterations):
0 commit comments