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.
|
maintained.
|
||||||
</p>
|
</p>
|
||||||
<div class="post-code">
|
<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
|
ans = 0
|
||||||
l, r = 0, len(height) - 1
|
l, r = 0, len(height) - 1
|
||||||
|
|
||||||
|
|
@ -88,7 +88,7 @@
|
||||||
while l < r and height[r] <= min_height:
|
while l < r and height[r] <= min_height:
|
||||||
r -= 1
|
r -= 1
|
||||||
|
|
||||||
return ans`</code></pre>
|
return ans</code></pre>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="problem-header">
|
<div class="problem-header">
|
||||||
|
|
|
||||||
2
wip.html
2
wip.html
|
|
@ -8,7 +8,7 @@
|
||||||
<link rel="icon" type="image/webp" href="/public/logo.webp" />
|
<link rel="icon" type="image/webp" href="/public/logo.webp" />
|
||||||
<title>Barrett Ruth</title>
|
<title>Barrett Ruth</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="graph">
|
||||||
<main>
|
<main>
|
||||||
<div
|
<div
|
||||||
style="
|
style="
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue