File tree 6 files changed +73
-2
lines changed
1264.Page Recommendations
1265.Print Immutable Linked List in Reverse
6 files changed +73
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,11 @@ Likes table:
101
101
### ** SQL**
102
102
103
103
``` 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 )
105
109
```
106
110
107
111
<!-- tabs:end -->
Original file line number Diff line number Diff line change @@ -95,7 +95,11 @@ Page 88 is not suggested because user 1 already likes it.
95
95
### ** SQL**
96
96
97
97
``` 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 )
99
103
```
100
104
101
105
<!-- tabs:end -->
Original file line number Diff line number Diff line change
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 )
Original file line number Diff line number Diff line change @@ -168,6 +168,27 @@ func printLinkedListInReverse(head ImmutableListNode) {
168
168
}
169
169
```
170
170
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
+
171
192
### ** ...**
172
193
173
194
```
Original file line number Diff line number Diff line change @@ -158,6 +158,27 @@ func printLinkedListInReverse(head ImmutableListNode) {
158
158
}
159
159
```
160
160
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
+
161
182
### ** ...**
162
183
163
184
```
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments