Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit c83e219

Browse files
author
Shuo
authored
Merge pull request #827 from openset/develop
A: new
2 parents 6d34203 + 6cc9b8e commit c83e219

File tree

127 files changed

+2388
-676
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+2388
-676
lines changed

‎README.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,22 @@ LeetCode Problems' Solutions
7070

7171
| # | Title | Solution | Difficulty |
7272
| :-: | - | - | :-: |
73+
| <span id="1723">1723</span> | [Find Minimum Time to Finish All Jobs](https://leetcode.com/problems/find-minimum-time-to-finish-all-jobs "完成所有工作的最短时间") | [Go](problems/find-minimum-time-to-finish-all-jobs) | Hard |
74+
| <span id="1722">1722</span> | [Minimize Hamming Distance After Swap Operations](https://leetcode.com/problems/minimize-hamming-distance-after-swap-operations "执行交换操作后的最小汉明距离") | [Go](problems/minimize-hamming-distance-after-swap-operations) | Medium |
75+
| <span id="1721">1721</span> | [Swapping Nodes in a Linked List](https://leetcode.com/problems/swapping-nodes-in-a-linked-list "交换链表中的节点") | [Go](problems/swapping-nodes-in-a-linked-list) | Medium |
76+
| <span id="1720">1720</span> | [Decode XORed Array](https://leetcode.com/problems/decode-xored-array "解码异或后的数组") | [Go](problems/decode-xored-array) | Easy |
77+
| <span id="1719">1719</span> | [Number Of Ways To Reconstruct A Tree](https://leetcode.com/problems/number-of-ways-to-reconstruct-a-tree "重构一棵树的方案数") | [Go](problems/number-of-ways-to-reconstruct-a-tree) | Hard |
78+
| <span id="1718">1718</span> | [Construct the Lexicographically Largest Valid Sequence](https://leetcode.com/problems/construct-the-lexicographically-largest-valid-sequence "构建字典序最大的可行序列") | [Go](problems/construct-the-lexicographically-largest-valid-sequence) | Medium |
79+
| <span id="1717">1717</span> | [Maximum Score From Removing Substrings](https://leetcode.com/problems/maximum-score-from-removing-substrings "删除子字符串的最大得分") | [Go](problems/maximum-score-from-removing-substrings) | Medium |
80+
| <span id="1716">1716</span> | [Calculate Money in Leetcode Bank](https://leetcode.com/problems/calculate-money-in-leetcode-bank "计算力扣银行的钱") | [Go](problems/calculate-money-in-leetcode-bank) | Easy |
81+
| <span id="1715">1715</span> | [Count Apples and Oranges](https://leetcode.com/problems/count-apples-and-oranges) 🔒 | [MySQL](problems/count-apples-and-oranges) | Medium |
82+
| <span id="1714">1714</span> | [Sum Of Special Evenly-Spaced Elements In Array](https://leetcode.com/problems/sum-of-special-evenly-spaced-elements-in-array) 🔒 | [Go](problems/sum-of-special-evenly-spaced-elements-in-array) | Hard |
83+
| <span id="1713">1713</span> | [Minimum Operations to Make a Subsequence](https://leetcode.com/problems/minimum-operations-to-make-a-subsequence "得到子序列的最少操作次数") | [Go](problems/minimum-operations-to-make-a-subsequence) | Hard |
84+
| <span id="1712">1712</span> | [Ways to Split Array Into Three Subarrays](https://leetcode.com/problems/ways-to-split-array-into-three-subarrays "将数组分成三个子数组的方案数") | [Go](problems/ways-to-split-array-into-three-subarrays) | Medium |
85+
| <span id="1711">1711</span> | [Count Good Meals](https://leetcode.com/problems/count-good-meals "大餐计数") | [Go](problems/count-good-meals) | Medium |
86+
| <span id="1710">1710</span> | [Maximum Units on a Truck](https://leetcode.com/problems/maximum-units-on-a-truck "卡车上的最大单元数") | [Go](problems/maximum-units-on-a-truck) | Easy |
87+
| <span id="1709">1709</span> | [Biggest Window Between Visits](https://leetcode.com/problems/biggest-window-between-visits) 🔒 | [MySQL](problems/biggest-window-between-visits) | Medium |
88+
| <span id="1708">1708</span> | [Largest Subarray Length K](https://leetcode.com/problems/largest-subarray-length-k) 🔒 | [Go](problems/largest-subarray-length-k) | Easy |
7389
| <span id="1707">1707</span> | [Maximum XOR With an Element From Array](https://leetcode.com/problems/maximum-xor-with-an-element-from-array "与数组中元素的最大异或值") | [Go](problems/maximum-xor-with-an-element-from-array) | Hard |
7490
| <span id="1706">1706</span> | [Where Will the Ball Fall](https://leetcode.com/problems/where-will-the-ball-fall "球会落何处") | [Go](problems/where-will-the-ball-fall) | Medium |
7591
| <span id="1705">1705</span> | [Maximum Number of Eaten Apples](https://leetcode.com/problems/maximum-number-of-eaten-apples "吃苹果的最大数目") | [Go](problems/maximum-number-of-eaten-apples) | Medium |
@@ -79,13 +95,13 @@ LeetCode Problems' Solutions
7995
| <span id="1701">1701</span> | [Average Waiting Time](https://leetcode.com/problems/average-waiting-time "平均等待时间") | [Go](problems/average-waiting-time) | Medium |
8096
| <span id="1700">1700</span> | [Number of Students Unable to Eat Lunch](https://leetcode.com/problems/number-of-students-unable-to-eat-lunch "无法吃午餐的学生数量") | [Go](problems/number-of-students-unable-to-eat-lunch) | Easy |
8197
| <span id="1699">1699</span> | [Number of Calls Between Two Persons](https://leetcode.com/problems/number-of-calls-between-two-persons) 🔒 | [MySQL](problems/number-of-calls-between-two-persons) | Medium |
82-
| <span id="1698">1698</span> | [Number of Distinct Substrings in a String](https://leetcode.com/problems/number-of-distinct-substrings-in-a-string) 🔒 | [Go](problems/number-of-distinct-substrings-in-a-string) | Medium |
98+
| <span id="1698">1698</span> | [Number of Distinct Substrings in a String](https://leetcode.com/problems/number-of-distinct-substrings-in-a-string"字符串的不同子字符串个数") 🔒 | [Go](problems/number-of-distinct-substrings-in-a-string) | Medium |
8399
| <span id="1697">1697</span> | [Checking Existence of Edge Length Limited Paths](https://leetcode.com/problems/checking-existence-of-edge-length-limited-paths "检查边长度限制的路径是否存在") | [Go](problems/checking-existence-of-edge-length-limited-paths) | Hard |
84100
| <span id="1696">1696</span> | [Jump Game VI](https://leetcode.com/problems/jump-game-vi "跳跃游戏 VI") | [Go](problems/jump-game-vi) | Medium |
85101
| <span id="1695">1695</span> | [Maximum Erasure Value](https://leetcode.com/problems/maximum-erasure-value "删除子数组的最大得分") | [Go](problems/maximum-erasure-value) | Medium |
86102
| <span id="1694">1694</span> | [Reformat Phone Number](https://leetcode.com/problems/reformat-phone-number "重新格式化电话号码") | [Go](problems/reformat-phone-number) | Easy |
87-
| <span id="1693">1693</span> | [Daily Leads and Partners](https://leetcode.com/problems/daily-leads-and-partners) 🔒 | [MySQL](problems/daily-leads-and-partners) | Easy |
88-
| <span id="1692">1692</span> | [Count Ways to Distribute Candies](https://leetcode.com/problems/count-ways-to-distribute-candies) 🔒 | [Go](problems/count-ways-to-distribute-candies) | Hard |
103+
| <span id="1693">1693</span> | [Daily Leads and Partners](https://leetcode.com/problems/daily-leads-and-partners"每天的领导和合伙人") 🔒 | [MySQL](problems/daily-leads-and-partners) | Easy |
104+
| <span id="1692">1692</span> | [Count Ways to Distribute Candies](https://leetcode.com/problems/count-ways-to-distribute-candies"计算分配糖果的不同方式") 🔒 | [Go](problems/count-ways-to-distribute-candies) | Hard |
89105
| <span id="1691">1691</span> | [Maximum Height by Stacking Cuboids](https://leetcode.com/problems/maximum-height-by-stacking-cuboids "堆叠长方体的最大高度") | [Go](problems/maximum-height-by-stacking-cuboids) | Hard |
90106
| <span id="1690">1690</span> | [Stone Game VII](https://leetcode.com/problems/stone-game-vii "石子游戏 VII") | [Go](problems/stone-game-vii) | Medium |
91107
| <span id="1689">1689</span> | [Partitioning Into Minimum Number Of Deci-Binary Numbers](https://leetcode.com/problems/partitioning-into-minimum-number-of-deci-binary-numbers "十-二进制数的最少数目") | [Go](problems/partitioning-into-minimum-number-of-deci-binary-numbers) | Medium |
@@ -95,13 +111,13 @@ LeetCode Problems' Solutions
95111
| <span id="1685">1685</span> | [Sum of Absolute Differences in a Sorted Array](https://leetcode.com/problems/sum-of-absolute-differences-in-a-sorted-array "有序数组中差绝对值之和") | [Go](problems/sum-of-absolute-differences-in-a-sorted-array) | Medium |
96112
| <span id="1684">1684</span> | [Count the Number of Consistent Strings](https://leetcode.com/problems/count-the-number-of-consistent-strings "统计一致字符串的数目") | [Go](problems/count-the-number-of-consistent-strings) | Easy |
97113
| <span id="1683">1683</span> | [Invalid Tweets](https://leetcode.com/problems/invalid-tweets) 🔒 | [MySQL](problems/invalid-tweets) | Easy |
98-
| <span id="1682">1682</span> | [Longest Palindromic Subsequence II](https://leetcode.com/problems/longest-palindromic-subsequence-ii) 🔒 | [Go](problems/longest-palindromic-subsequence-ii) | Medium |
114+
| <span id="1682">1682</span> | [Longest Palindromic Subsequence II](https://leetcode.com/problems/longest-palindromic-subsequence-ii"最长回文子序列 II") 🔒 | [Go](problems/longest-palindromic-subsequence-ii) | Medium |
99115
| <span id="1681">1681</span> | [Minimum Incompatibility](https://leetcode.com/problems/minimum-incompatibility "最小不兼容性") | [Go](problems/minimum-incompatibility) | Hard |
100116
| <span id="1680">1680</span> | [Concatenation of Consecutive Binary Numbers](https://leetcode.com/problems/concatenation-of-consecutive-binary-numbers "连接连续二进制数字") | [Go](problems/concatenation-of-consecutive-binary-numbers) | Medium |
101117
| <span id="1679">1679</span> | [Max Number of K-Sum Pairs](https://leetcode.com/problems/max-number-of-k-sum-pairs "K 和数对的最大数目") | [Go](problems/max-number-of-k-sum-pairs) | Medium |
102118
| <span id="1678">1678</span> | [Goal Parser Interpretation](https://leetcode.com/problems/goal-parser-interpretation "设计 Goal 解析器") | [Go](problems/goal-parser-interpretation) | Easy |
103119
| <span id="1677">1677</span> | [Product's Worth Over Invoices](https://leetcode.com/problems/products-worth-over-invoices) 🔒 | [MySQL](problems/products-worth-over-invoices) | Easy |
104-
| <span id="1676">1676</span> | [Lowest Common Ancestor of a Binary Tree IV](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree-iv) 🔒 | [Go](problems/lowest-common-ancestor-of-a-binary-tree-iv) | Medium |
120+
| <span id="1676">1676</span> | [Lowest Common Ancestor of a Binary Tree IV](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree-iv"二叉树的最近公共祖先 IV") 🔒 | [Go](problems/lowest-common-ancestor-of-a-binary-tree-iv) | Medium |
105121
| <span id="1675">1675</span> | [Minimize Deviation in Array](https://leetcode.com/problems/minimize-deviation-in-array "数组的最小偏移量") | [Go](problems/minimize-deviation-in-array) | Hard |
106122
| <span id="1674">1674</span> | [Minimum Moves to Make Array Complementary](https://leetcode.com/problems/minimum-moves-to-make-array-complementary "使数组互补的最少操作次数") | [Go](problems/minimum-moves-to-make-array-complementary) | Medium |
107123
| <span id="1673">1673</span> | [Find the Most Competitive Subsequence](https://leetcode.com/problems/find-the-most-competitive-subsequence "找出最具竞争力的子序列") | [Go](problems/find-the-most-competitive-subsequence) | Medium |
@@ -110,7 +126,7 @@ LeetCode Problems' Solutions
110126
| <span id="1670">1670</span> | [Design Front Middle Back Queue](https://leetcode.com/problems/design-front-middle-back-queue "设计前中后队列") | [Go](problems/design-front-middle-back-queue) | Medium |
111127
| <span id="1669">1669</span> | [Merge In Between Linked Lists](https://leetcode.com/problems/merge-in-between-linked-lists "合并两个链表") | [Go](problems/merge-in-between-linked-lists) | Medium |
112128
| <span id="1668">1668</span> | [Maximum Repeating Substring](https://leetcode.com/problems/maximum-repeating-substring "最大重复子字符串") | [Go](problems/maximum-repeating-substring) | Easy |
113-
| <span id="1667">1667</span> | [Fix Names in a Table](https://leetcode.com/problems/fix-names-in-a-table) 🔒 | [MySQL](problems/fix-names-in-a-table) | Easy |
129+
| <span id="1667">1667</span> | [Fix Names in a Table](https://leetcode.com/problems/fix-names-in-a-table"修复表中的名字") 🔒 | [MySQL](problems/fix-names-in-a-table) | Easy |
114130
| <span id="1666">1666</span> | [Change the Root of a Binary Tree](https://leetcode.com/problems/change-the-root-of-a-binary-tree "改变二叉树的根节点") 🔒 | [Go](problems/change-the-root-of-a-binary-tree) | Medium |
115131
| <span id="1665">1665</span> | [Minimum Initial Energy to Finish Tasks](https://leetcode.com/problems/minimum-initial-energy-to-finish-tasks "完成所有任务的最少初始能量") | [Go](problems/minimum-initial-energy-to-finish-tasks) | Hard |
116132
| <span id="1664">1664</span> | [Ways to Make a Fair Array](https://leetcode.com/problems/ways-to-make-a-fair-array "生成平衡数组的方案数") | [Go](problems/ways-to-make-a-fair-array) | Medium |

‎problems/3sum-with-multiplicity/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111

1212
## [923. 3Sum With Multiplicity (Medium)](https://leetcode.com/problems/3sum-with-multiplicity "三数之和的多种可能")
1313

14-
<p>Given an integer array <code>A</code>, and an integer <code>target</code>, return the number of&nbsp;tuples&nbsp;<code>i, j, k</code>&nbsp; such that <code>i &lt; j &lt; k</code> and&nbsp;<code>A[i] + A[j] + A[k] == target</code>.</p>
14+
<p>Given an integer array <code>arr</code>, and an integer <code>target</code>, return the number oftuples<code>i, j, k</code> such that <code>i &lt; j &lt; k</code> and<code>arr[i] + arr[j] + arr[k] == target</code>.</p>
1515

16-
<p>As the answer can be very large, return it <strong>modulo</strong>&nbsp;<code>10<sup>9</sup> + 7</code>.</p>
16+
<p>As the answer can be very large, return it <strong>modulo</strong><code>10<sup>9</sup> + 7</code>.</p>
1717

1818
<p>&nbsp;</p>
1919
<p><strong>Example 1:</strong></p>
2020

2121
<pre>
22-
<strong>Input:</strong> A = [1,1,2,2,3,3,4,4,5,5], target = 8
22+
<strong>Input:</strong> arr = [1,1,2,2,3,3,4,4,5,5], target = 8
2323
<strong>Output:</strong> 20
2424
<strong>Explanation: </strong>
25-
Enumerating by the values (A[i], A[j], A[k]):
25+
Enumerating by the values (arr[i], arr[j], arr[k]):
2626
(1, 2, 5) occurs 8 times;
2727
(1, 3, 4) occurs 8 times;
2828
(2, 2, 4) occurs 2 times;
@@ -32,10 +32,10 @@ Enumerating by the values (A[i], A[j], A[k]):
3232
<p><strong>Example 2:</strong></p>
3333

3434
<pre>
35-
<strong>Input:</strong> A = [1,1,2,2,2,2], target = 5
35+
<strong>Input:</strong> arr = [1,1,2,2,2,2], target = 5
3636
<strong>Output:</strong> 12
3737
<strong>Explanation: </strong>
38-
A[i] = 1, A[j] = A[k] = 2 occurs 12 times:
38+
arr[i] = 1, arr[j] = arr[k] = 2 occurs 12 times:
3939
We choose one 1 from [1,1] in 2 ways,
4040
and two 2s from [2,2,2,2] in 6 ways.
4141
</pre>
@@ -44,8 +44,8 @@ and two 2s from [2,2,2,2] in 6 ways.
4444
<p><strong>Constraints:</strong></p>
4545

4646
<ul>
47-
<li><code>3 &lt;= A.length &lt;= 3000</code></li>
48-
<li><code>0 &lt;= A[i] &lt;= 100</code></li>
47+
<li><code>3 &lt;= arr.length &lt;= 3000</code></li>
48+
<li><code>0 &lt;= arr[i] &lt;= 100</code></li>
4949
<li><code>0 &lt;= target &lt;= 300</code></li>
5050
</ul>
5151

‎problems/add-two-numbers/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
</ul>
4949

5050
### Related Topics
51+
[[Recursion](../../tag/recursion/README.md)]
5152
[[Linked List](../../tag/linked-list/README.md)]
5253
[[Math](../../tag/math/README.md)]
5354

‎problems/avoid-flood-in-the-city/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ After that, it will rain over lakes [1,2]. It&#39;s easy to prove that no matter
8888
<p><strong>Constraints:</strong></p>
8989

9090
<ul>
91-
<li><code>1 &lt;= rains.length &lt;= 10^5</code></li>
92-
<li><code>0 &lt;= rains[i] &lt;= 10^9</code></li>
91+
<li><code>1 &lt;= rains.length &lt;= 10<sup>5</sup></code></li>
92+
<li><code>0 &lt;= rains[i] &lt;= 10<sup>9</sup></code></li>
9393
</ul>
9494

9595
### Related Topics

‎problems/beautiful-arrangement/README.md

Lines changed: 26 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,48 +11,46 @@
1111

1212
## [526. Beautiful Arrangement (Medium)](https://leetcode.com/problems/beautiful-arrangement "优美的排列")
1313

14-
<p>Suppose you have <b>N</b> integers from 1 to N. We define a beautiful arrangement as an array that is constructed by these <b>N</b> numbers successfully if one of the following is true for the i<sub>th</sub> position (1 &lt;= i &lt;= N) in this array:</p>
14+
<p>Suppose you have <code>n</code> integers labeled <code>1</code> through <code>n</code>. A permutation of those <code>n</code> integers <code>perm</code> (<strong>1-indexed</strong>) is considered a <strong>beautiful arrangement</strong> if for every <code>i</code> (<code>1 &lt;= i &lt;= n</code>), <strong>either</strong> of the following is true:</p>
1515

16-
<ol>
17-
<li>The number at the i<sub>th</sub> position is divisible by <b>i</b>.</li>
18-
<li><b>i</b> is divisible by the number at the i<sub>th</sub> position.</li>
19-
</ol>
16+
<ul>
17+
<li><code>perm[i]</code> is divisible by <code>i</code>.</li>
18+
<li><code>i</code> is divisible by <code>perm[i]</code>.</li>
19+
</ul>
2020

21-
<p>&nbsp;</p>
22-
23-
<p>Now given N, how many beautiful arrangements can you construct?</p>
21+
<p>Given an integer <code>n</code>, return <em>the <strong>number</strong> of the <strong>beautiful arrangements</strong> that you can construct</em>.</p>
2422

25-
<p><b>Example 1:</b></p>
23+
<p>&nbsp;</p>
24+
<p><strong>Example 1:</strong></p>
2625

2726
<pre>
28-
<b>Input:</b> 2
29-
<b>Output:</b> 2
27+
<strong>Input:</strong> n = 2
28+
<strong>Output:</strong> 2
3029
<b>Explanation:</b>
30+
The first beautiful arrangement is [1,2]:
31+
- perm[1] = 1 is divisible by i = 1
32+
- perm[2] = 2 is divisible by i = 2
33+
The second beautiful arrangement is [2,1]:
34+
- perm[1] = 2 is divisible by i = 1
35+
- i = 2 is divisible by perm[2] = 1
36+
</pre>
3137

32-
The first beautiful arrangement is [1, 2]:
33-
34-
Number at the 1st position (i=1) is 1, and 1 is divisible by i (i=1).
35-
36-
Number at the 2nd position (i=2) is 2, and 2 is divisible by i (i=2).
37-
38-
The second beautiful arrangement is [2, 1]:
39-
40-
Number at the 1st position (i=1) is 2, and 2 is divisible by i (i=1).
38+
<p><strong>Example 2:</strong></p>
4139

42-
Number at the 2nd position (i=2) is 1, and i (i=2) is divisible by 1.
40+
<pre>
41+
<strong>Input:</strong> n = 1
42+
<strong>Output:</strong> 1
4343
</pre>
4444

4545
<p>&nbsp;</p>
46+
<p><strong>Constraints:</strong></p>
4647

47-
<p><b>Note:</b></p>
48-
49-
<ol>
50-
<li><b>N</b> is a positive integer and will not exceed 15.</li>
51-
</ol>
52-
53-
<p>&nbsp;</p>
48+
<ul>
49+
<li><code>1 &lt;= n &lt;= 15</code></li>
50+
</ul>
5451

5552
### Related Topics
53+
[[Depth-first Search](../../tag/depth-first-search/README.md)]
5654
[[Backtracking](../../tag/backtracking/README.md)]
5755

5856
### Similar Questions

‎problems/best-time-to-buy-and-sell-stock-iv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<p><strong>Constraints:</strong></p>
3939

4040
<ul>
41-
<li><code>0 &lt;= k &lt;= 10<sup>9</sup></code></li>
41+
<li><code>0 &lt;= k &lt;= 100</code></li>
4242
<li><code>0 &lt;= prices.length &lt;= 1000</code></li>
4343
<li><code>0 &lt;= prices[i] &lt;= 1000</code></li>
4444
</ul>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!--|This file generated by command(leetcode description); DO NOT EDIT. |-->
2+
<!--+----------------------------------------------------------------------+-->
3+
<!--|@author openset <openset.wang@gmail.com> |-->
4+
<!--|@link https://github.com/openset |-->
5+
<!--|@home https://github.com/openset/leetcode |-->
6+
<!--+----------------------------------------------------------------------+-->
7+
8+
[< Previous](../largest-subarray-length-k "Largest Subarray Length K")
9+
10+
[Next >](../maximum-units-on-a-truck "Maximum Units on a Truck")
11+
12+
## [1709. Biggest Window Between Visits (Medium)](https://leetcode.com/problems/biggest-window-between-visits "")
13+
14+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Create table If Not Exists UserVisits(user_id int, visit_date date);
2+
Truncate table UserVisits;
3+
insert into UserVisits (user_id, visit_date) values ('1', '2020年11月28日');
4+
insert into UserVisits (user_id, visit_date) values ('1', '2020年10月20日');
5+
insert into UserVisits (user_id, visit_date) values ('1', '2020年12月3日');
6+
insert into UserVisits (user_id, visit_date) values ('2', '2020年10月5日');
7+
insert into UserVisits (user_id, visit_date) values ('2', '2020年12月9日');
8+
insert into UserVisits (user_id, visit_date) values ('3', '2020年11月11日');

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /