Interview Guides
Given a binary array nums, return the length of the longest contiguous subarray containing only 1s if you may flip at most one 0 to 1. The input is a list of integers containing only 0 and 1, and the output is a single integer.
1 <= len(nums) <= 10^5nums[i] is either 0 or 10O(n) solution is expected