-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSummaryRanges.java
44 lines (43 loc) · 1.26 KB
/
SummaryRanges.java
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*https://leetcode.com/problems/summary-ranges/*/
class Solution {
public List<String> summaryRanges(int[] nums) {
List<String> result = new ArrayList<String>();
if (nums.length == 1)
{
result.add(Integer.toString(nums[0]));
return result;
}
int n = nums.length, i = 0, j = 0;
while (j < n)
{
++j;
if (j == n)
{
StringBuffer s = new StringBuffer(Integer.toString(nums[i]));
if (i != j-1)
{
s.append("->");
s.append(nums[j-1]);
}
result.add(s.toString());
break;
}
if (nums[j] != nums[j-1]+1)
{
StringBuffer s = new StringBuffer(Integer.toString(nums[i]));
if (i != j-1)
{
s.append("->");
s.append(nums[j-1]);
}
result.add(s.toString());
i = j;
}
}
/*StringBuffer s = new StringBuffer(Integer.toString(nums[i]));
s.append("->");
s.append(nums[j-1]);
result.add(s.toString());*/
return result;
}
}