Skip to content

Commit 280be8b

Browse files
committed
fix: update
1 parent bfae6b9 commit 280be8b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

solution/1300-1399/1311.Get Watched Videos by Your Friends/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ class Solution:
122122

123123
```java
124124
class Solution {
125-
public List<String> watchedVideosByFriends(List<List<String>> watchedVideos, int[][] friends, int id, int level) {
125+
public List<String> watchedVideosByFriends(
126+
List<List<String>> watchedVideos, int[][] friends, int id, int level) {
126127
Deque<Integer> q = new ArrayDeque<>();
127128
q.offer(id);
128129
int n = friends.length;

solution/1300-1399/1311.Get Watched Videos by Your Friends/README_EN.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ class Solution:
118118

119119
```java
120120
class Solution {
121-
public List<String> watchedVideosByFriends(List<List<String>> watchedVideos, int[][] friends, int id, int level) {
121+
public List<String> watchedVideosByFriends(
122+
List<List<String>> watchedVideos, int[][] friends, int id, int level) {
122123
Deque<Integer> q = new ArrayDeque<>();
123124
q.offer(id);
124125
int n = friends.length;

solution/1300-1399/1311.Get Watched Videos by Your Friends/Solution.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
class Solution {
2-
public List<String> watchedVideosByFriends(List<List<String>> watchedVideos, int[][] friends, int id, int level) {
2+
public List<String> watchedVideosByFriends(
3+
List<List<String>> watchedVideos, int[][] friends, int id, int level) {
34
Deque<Integer> q = new ArrayDeque<>();
45
q.offer(id);
56
int n = friends.length;

0 commit comments

Comments
 (0)