Skip to content

Commit

Permalink
Create README - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
divyanshkumar5 committed Jun 9, 2023
1 parent b9429ef commit 24c769d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions 0709-to-lower-case/README.md
@@ -0,0 +1,29 @@
<h2><a href="https://leetcode.com/problems/to-lower-case/">709. To Lower Case</a></h2><h3>Easy</h3><hr><div><p>Given a string <code>s</code>, return <em>the string after replacing every uppercase letter with the same lowercase letter</em>.</p>

<p>&nbsp;</p>
<p><strong class="example">Example 1:</strong></p>

<pre><strong>Input:</strong> s = "Hello"
<strong>Output:</strong> "hello"
</pre>

<p><strong class="example">Example 2:</strong></p>

<pre><strong>Input:</strong> s = "here"
<strong>Output:</strong> "here"
</pre>

<p><strong class="example">Example 3:</strong></p>

<pre><strong>Input:</strong> s = "LOVELY"
<strong>Output:</strong> "lovely"
</pre>

<p>&nbsp;</p>
<p><strong>Constraints:</strong></p>

<ul>
<li><code>1 &lt;= s.length &lt;= 100</code></li>
<li><code>s</code> consists of printable ASCII characters.</li>
</ul>
</div>

0 comments on commit 24c769d

Please sign in to comment.