Skip to content

Commit 4fefc13

Browse files
committed
feat: add solutions to lc problems: No.1264,1265
* No.1264.Page Recommendations * No.1265.Print Immutable Linked List in Reverse
1 parent 0ea5a9b commit 4fefc13

File tree

6 files changed

+73
-2
lines changed

6 files changed

+73
-2
lines changed

solution/1200-1299/1264.Page Recommendations/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,11 @@ Likes table:
101101
### **SQL**
102102

103103
```sql
104-
104+
# Write your MySQL query statement below
105+
SELECT DISTINCT page_id AS recommended_page
106+
FROM Likes
107+
WHERE user_id IN ( SELECT user1_id AS user_id FROM Friendship WHERE user2_id = 1 UNION ALL SELECT user2_id AS user_id FROM Friendship WHERE user1_id = 1 )
108+
AND page_id NOT IN ( SELECT page_id FROM Likes WHERE user_id = 1 )
105109
```
106110

107111
<!-- tabs:end -->

solution/1200-1299/1264.Page Recommendations/README_EN.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,11 @@ Page 88 is not suggested because user 1 already likes it.
9595
### **SQL**
9696

9797
```sql
98-
98+
# Write your MySQL query statement below
99+
SELECT DISTINCT page_id AS recommended_page
100+
FROM Likes
101+
WHERE user_id IN ( SELECT user1_id AS user_id FROM Friendship WHERE user2_id = 1 UNION ALL SELECT user2_id AS user_id FROM Friendship WHERE user1_id = 1 )
102+
AND page_id NOT IN ( SELECT page_id FROM Likes WHERE user_id = 1 )
99103
```
100104

101105
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Write your MySQL query statement below
2+
SELECT DISTINCT page_id AS recommended_page
3+
FROM Likes
4+
WHERE user_id IN ( SELECT user1_id AS user_id FROM Friendship WHERE user2_id = 1 UNION ALL SELECT user2_id AS user_id FROM Friendship WHERE user1_id = 1 )
5+
AND page_id NOT IN ( SELECT page_id FROM Likes WHERE user_id = 1 )

solution/1200-1299/1265.Print Immutable Linked List in Reverse/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,27 @@ func printLinkedListInReverse(head ImmutableListNode) {
168168
}
169169
```
170170

171+
### **TypeScript**
172+
173+
```ts
174+
/**
175+
* // This is the ImmutableListNode's API interface.
176+
* // You should not implement it, or speculate about its implementation
177+
* class ImmutableListNode {
178+
* printValue() {}
179+
*
180+
* getNext(): ImmutableListNode {}
181+
* }
182+
*/
183+
184+
function printLinkedListInReverse(head: ImmutableListNode) {
185+
if (head) {
186+
printLinkedListInReverse(head.next);
187+
head.printValue();
188+
}
189+
}
190+
```
191+
171192
### **...**
172193

173194
```

solution/1200-1299/1265.Print Immutable Linked List in Reverse/README_EN.md

+21
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,27 @@ func printLinkedListInReverse(head ImmutableListNode) {
158158
}
159159
```
160160

161+
### **TypeScript**
162+
163+
```ts
164+
/**
165+
* // This is the ImmutableListNode's API interface.
166+
* // You should not implement it, or speculate about its implementation
167+
* class ImmutableListNode {
168+
* printValue() {}
169+
*
170+
* getNext(): ImmutableListNode {}
171+
* }
172+
*/
173+
174+
function printLinkedListInReverse(head: ImmutableListNode) {
175+
if (head) {
176+
printLinkedListInReverse(head.next);
177+
head.printValue();
178+
}
179+
}
180+
```
181+
161182
### **...**
162183

163184
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* // This is the ImmutableListNode's API interface.
3+
* // You should not implement it, or speculate about its implementation
4+
* class ImmutableListNode {
5+
* printValue() {}
6+
*
7+
* getNext(): ImmutableListNode {}
8+
* }
9+
*/
10+
11+
function printLinkedListInReverse(head: ImmutableListNode) {
12+
if (head) {
13+
printLinkedListInReverse(head.next);
14+
head.printValue();
15+
}
16+
}

0 commit comments

Comments
 (0)