File tree 3 files changed +61
-0
lines changed
solution/0400-0499/0485.Max Consecutive Ones
3 files changed +61
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,28 @@ impl Solution {
188
188
}
189
189
```
190
190
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
+
191
213
### ** ...**
192
214
193
215
```
Original file line number Diff line number Diff line change @@ -172,6 +172,28 @@ impl Solution {
172
172
}
173
173
```
174
174
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
+
175
197
### ** ...**
176
198
177
199
```
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments