forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_565.java
More file actions
26 lines (23 loc) · 704 Bytes
/
_565.java
File metadata and controls
26 lines (23 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.fishercoder.solutions;
public class _565 {
public static class Solution1 {
public int arrayNesting(int[] nums) {
if (nums == null || nums.length == 0) {
return 0;
}
boolean[] visited = new boolean[nums.length];
int answer = 0;
for (int i : nums) {
int count = 0;
int j = i;
while (j >= 0 && j < nums.length && !visited[j]) {
count++;
visited[j] = true;
j = nums[j];
}
answer = Math.max(answer, count);
}
return answer;
}
}
}