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/0100-0199/0176.Second Highest Salary/README_EN.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Each row of this table contains information about the salary of an employee.
31
31
32
32
<p> </p>
33
33
34
-
<p>Write a solution to find the second highest salary from the <code>Employee</code> table. If there is no second highest salary, return <code>null (return None in Pandas)</code>.</p>
34
+
<p>Write a solution to find the second highest <strong>distinct</strong> salary from the <code>Employee</code> table. If there is no second highest salary, return <code>null (return None in Pandas)</code>.</p>
35
35
36
36
<p>The result format is in the following example.</p>
<p>The strings <code>s</code> and <code>t</code> can not be made identical as <code>'o'</code> needs to be mapped to both <code>'a'</code> and <code>'r'</code>.</p>
54
+
</div>
55
+
56
+
<p><strongclass="example">Example 3:</strong></p>
57
+
58
+
<divclass="example-block">
59
+
<p><strong>Input:</strong> <spanclass="example-io">s = "paper", t = "title"</span></p>
Copy file name to clipboardexpand all lines: solution/0700-0799/0728.Self Dividing Numbers/README_EN.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ tags:
24
24
25
25
<p>A <strong>self-dividing number</strong> is not allowed to contain the digit zero.</p>
26
26
27
-
<p>Given two integers <code>left</code> and <code>right</code>, return <em>a list of all the <strong>self-dividing numbers</strong> in the range</em> <code>[left, right]</code>.</p>
27
+
<p>Given two integers <code>left</code> and <code>right</code>, return <em>a list of all the <strong>self-dividing numbers</strong> in the range</em> <code>[left, right]</code> (both <strong>inclusive</strong>).</p>
0 commit comments