From 28f4fb1a594ccf19e425474fa2beb793061ccbf1 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 18 Jun 2024 18:13:03 -0500 Subject: [PATCH] fix: remove ticks --- posts/algorithms/two-pointers.html | 4 ++-- wip.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/posts/algorithms/two-pointers.html b/posts/algorithms/two-pointers.html index 8ea0809..523bd88 100644 --- a/posts/algorithms/two-pointers.html +++ b/posts/algorithms/two-pointers.html @@ -75,7 +75,7 @@ maintained.

-
`def maxArea(height: list[int]) -> int:
+              
def maxArea(height: list[int]) -> int:
     ans = 0
     l, r = 0, len(height) - 1
 
@@ -88,7 +88,7 @@
         while l < r and height[r] <= min_height:
             r -= 1
 
-    return ans`
+ return ans
diff --git a/wip.html b/wip.html index a40e616..50b0d25 100644 --- a/wip.html +++ b/wip.html @@ -8,7 +8,7 @@ Barrett Ruth - +