fix: remove ticks
This commit is contained in:
parent
8a71d10c07
commit
28f4fb1a59
2 changed files with 3 additions and 3 deletions
|
|
@ -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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue