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. 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">

View file

@ -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="