485. Max Consecutive Ones
❀ Origin
Problem
Given a binary array,
find the maximum number of consecutive 1s in this array.
Example
1 | Input: [1,1,0,1,1,1] |
Note
- The input array will only contain 0 and 1.
- The length of input array is a positive integer and will not exceed 10,000
❀ 翻譯
問題
給定一個陣列,
從陣列中找出數字最大的 1 的連續的數字。
注意
- input 陣列只會包含 0 和 1。
- input 陣列的長度只會是正整數,而且不會超過 10,000 。
❀ Solution
Golang
1 | /** |