Documentation for b0b183df92

This commit is contained in:
github-actions
2023-06-12 16:22:49 +00:00
parent 8b1f36d69a
commit 26f1eee566
104 changed files with 4624 additions and 2690 deletions

View File

@@ -147,7 +147,7 @@ Functions</h2></td></tr>
<li>Capitalize zero or more of <code>a</code>'s lowercase letters.</li>
<li>Delete all of the remaining lowercase letters in <code>a</code>.</li>
</ol>
<h3><a class="anchor" id="autotoc_md69"></a>
<h3><a class="anchor" id="autotoc_md70"></a>
Algorithm</h3>
<p>The idea is in the problem statement itself: iterate through characters of string <code>a</code> and <code>b</code> (for character indexes <code>i</code> and <code>j</code> respectively):</p><ol type="1">
<li>If <code>a[i]</code> and <code>b[j]</code> are equal, then move to next position</li>