Skip to content

Commit a90a5fc

Browse files
author
openset
committed
Add: new
1 parent e17a468 commit a90a5fc

File tree

5 files changed

+26
-1
lines changed

5 files changed

+26
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ LeetCode Problems' Solutions
5454

5555
| # | Title | Solution | Difficulty |
5656
| :-: | - | - | :-: |
57+
| <span id="1050">1050</span> | [Actors and Directors Who Cooperated At Least Three Times](https://leetcode.com/problems/actors-and-directors-who-cooperated-at-least-three-times) 🔒 | [MySQL](https://github.com/openset/leetcode/tree/master/problems/actors-and-directors-who-cooperated-at-least-three-times) | Easy |
5758
| <span id="1049">1049</span> | [Last Stone Weight II](https://leetcode.com/problems/last-stone-weight-ii "最后一块石头的重量 II") | [Go](https://github.com/openset/leetcode/tree/master/problems/last-stone-weight-ii) | Medium |
5859
| <span id="1048">1048</span> | [Longest String Chain](https://leetcode.com/problems/longest-string-chain "最长字符串链") | [Go](https://github.com/openset/leetcode/tree/master/problems/longest-string-chain) | Medium |
5960
| <span id="1047">1047</span> | [Remove All Adjacent Duplicates In String](https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string "删除字符串中的所有相邻重复项") | [Go](https://github.com/openset/leetcode/tree/master/problems/remove-all-adjacent-duplicates-in-string) | Easy |
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](https://github.com/openset/leetcode/tree/master/problems/last-stone-weight-ii "Last Stone Weight II")
9+
                
10+
Next >
11+
12+
## 1050. Actors and Directors Who Cooperated At Least Three Times (Easy)
13+
14+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Write your MySQL query statement below
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Create table If Not Exists ActorDirector (actor_id int, director_id int, timestamp int);
2+
Truncate table ActorDirector;
3+
insert into ActorDirector (actor_id, director_id, timestamp) values ('1', '1', '0');
4+
insert into ActorDirector (actor_id, director_id, timestamp) values ('1', '1', '1');
5+
insert into ActorDirector (actor_id, director_id, timestamp) values ('1', '1', '2');
6+
insert into ActorDirector (actor_id, director_id, timestamp) values ('1', '2', '3');
7+
insert into ActorDirector (actor_id, director_id, timestamp) values ('1', '2', '4');
8+
insert into ActorDirector (actor_id, director_id, timestamp) values ('2', '1', '5');
9+
insert into ActorDirector (actor_id, director_id, timestamp) values ('2', '1', '6');

problems/last-stone-weight-ii/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[< Previous](https://github.com/openset/leetcode/tree/master/problems/longest-string-chain "Longest String Chain")
99

10-
Next >
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/actors-and-directors-who-cooperated-at-least-three-times "Actors and Directors Who Cooperated At Least Three Times")
1111

1212
## 1049. Last Stone Weight II (Medium)
1313

0 commit comments

Comments
 (0)