Skip to content

Commit 3736c5b

Browse files
committed
feat: add solutions to lc problem: No.3749
1 parent 46325f9 commit 3736c5b

File tree

13 files changed

+991
-5
lines changed

13 files changed

+991
-5
lines changed

solution/0600-0699/0627.Swap Sex of Employees/README_EN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The table contains information about an employee.
4444
<p><strong class="example">Example 1:</strong></p>
4545

4646
<pre>
47-
<strong>Input:</strong>
47+
<strong>Input:</strong>
4848
Salary table:
4949
+----+------+-----+--------+
5050
| id | name | sex | salary |
@@ -54,7 +54,7 @@ Salary table:
5454
| 3 | C | m | 5500 |
5555
| 4 | D | f | 500 |
5656
+----+------+-----+--------+
57-
<strong>Output:</strong>
57+
<strong>Output:</strong>
5858
+----+------+-----+--------+
5959
| id | name | sex | salary |
6060
+----+------+-----+--------+
@@ -63,7 +63,7 @@ Salary table:
6363
| 3 | C | f | 5500 |
6464
| 4 | D | m | 500 |
6565
+----+------+-----+--------+
66-
<strong>Explanation:</strong>
66+
<strong>Explanation:</strong>
6767
(1, A) and (3, C) were changed from &#39;m&#39; to &#39;f&#39;.
6868
(2, B) and (4, D) were changed from &#39;f&#39; to &#39;m&#39;.
6969
</pre>

0 commit comments

Comments
 (0)