fix: remove ticks

This commit is contained in:
Barrett Ruth 2024-06-18 18:13:03 -05:00
parent 8a71d10c07
commit 28f4fb1a59
2 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@
maintained.
</p>
<div class="post-code">
<pre><code class="language-python">`def maxArea(height: list[int]) -> int:
<pre><code class="language-python">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`</code></pre>
return ans</code></pre>
</div>
</div>
<div class="problem-header">