Skip to content

Commit ab8647b

Browse files
authored
feat: add php solution lc problem: No.0485 (doocs#974)
1 parent e5ed98a commit ab8647b

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

solution/0400-0499/0485.Max Consecutive Ones/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,28 @@ impl Solution {
188188
}
189189
```
190190

191+
### **PHP**
192+
193+
```php
194+
class Solution {
195+
/**
196+
* @param Integer[] $nums
197+
* @return Integer
198+
*/
199+
function findMaxConsecutiveOnes($nums) {
200+
$tmp = $max = 0;
201+
for ($i = 0; $i < count($nums); $i++) {
202+
if ($nums[$i] == 1) $tmp++;
203+
else {
204+
$max = max($tmp, $max);
205+
$tmp = 0;
206+
}
207+
}
208+
return max($tmp, $max);
209+
}
210+
}
211+
```
212+
191213
### **...**
192214

193215
```

solution/0400-0499/0485.Max Consecutive Ones/README_EN.md

+22
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,28 @@ impl Solution {
172172
}
173173
```
174174

175+
### **PHP**
176+
177+
```php
178+
class Solution {
179+
/**
180+
* @param Integer[] $nums
181+
* @return Integer
182+
*/
183+
function findMaxConsecutiveOnes($nums) {
184+
$tmp = $max = 0;
185+
for ($i = 0; $i < count($nums); $i++) {
186+
if ($nums[$i] == 1) $tmp++;
187+
else {
188+
$max = max($tmp, $max);
189+
$tmp = 0;
190+
}
191+
}
192+
return max($tmp, $max);
193+
}
194+
}
195+
```
196+
175197
### **...**
176198

177199
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
class Solution {
2+
/**
3+
* @param Integer[] $nums
4+
* @return Integer
5+
*/
6+
function findMaxConsecutiveOnes($nums) {
7+
$tmp = $max = 0;
8+
for ($i = 0; $i < count($nums); $i++) {
9+
if ($nums[$i] == 1) $tmp++;
10+
else {
11+
$max = max($tmp, $max);
12+
$tmp = 0;
13+
}
14+
}
15+
return max($tmp, $max);
16+
}
17+
}

0 commit comments

Comments
 (0)