You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: solution/2500-2599/2559.Count Vowel Strings in Ranges/README_EN.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
9
9
<p>Each query <code>queries[i] = [l<sub>i</sub>, r<sub>i</sub>]</code> asks us to find the number of strings present in the range <code>l<sub>i</sub></code> to <code>r<sub>i</sub></code> (both <strong>inclusive</strong>) of <code>words</code> that start and end with a vowel.</p>
10
10
11
-
<p>Return an array <code>ans</code> of size <code>queries.length</code>, where <code>ans[i]</code> is the answer to the <code>i</code><sup>th</sup> query.</p>
11
+
<p>Return <em>an array </em><code>ans</code><em> of size </em><code>queries.length</code><em>, where </em><code>ans[i]</code><em> is the answer to the </em><code>i</code><sup>th</sup><em> query</em>.</p>
12
12
13
13
<p><strong>Note</strong> that the vowel letters are <code>'a'</code>, <code>'e'</code>, <code>'i'</code>, <code>'o'</code>, and <code>'u'</code>.</p>
Copy file name to clipboardexpand all lines: solution/2500-2599/2560.House Robber IV/README_EN.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,9 @@
10
10
11
11
<p>You are given an integer array <code>nums</code> representing how much money is stashed in each house. More formally, the <code>i<sup>th</sup></code> house from the left has <code>nums[i]</code> dollars.</p>
12
12
13
-
<p>You are also given an integer <code>k</code>, representing the <strong>minimum</strong> number of houses the robber will steal from. It is always possible to steal at least <code>k</code> houses.</p>
13
+
<p>You are also given an integer <code>k</code>, representing the <strong>minimum</strong> number of houses the robber will steal from.It is always possible to steal at least <code>k</code> houses.</p>
14
14
15
-
<p>Return <em>the <strong>minimum</strong> </em>capability of the robber out of all the possible ways to steal at least <code>k</code> houses.</p>
15
+
<p>Return <em>the <strong>minimum</strong> capability of the robber out of all the possible ways to steal at least </em><code>k</code><em> houses</em>.</p>
0 commit comments