摘要: You are given an array of variable pairs equations and an array of real numbers values, where equations[i] = [Ai, Bi] and values[i] represent the equa 阅读全文
posted @ 2021-01-06 07:29 CNoodle 阅读(348) 评论(0) 推荐(0)
摘要: Given a binary array nums and an integer k, return the maximum number of consecutive 1's in the array if you can flip at most k 0's. Example 1: Input: 阅读全文
posted @ 2021-01-06 01:56 CNoodle 阅读(209) 评论(0) 推荐(0)
摘要: Given a binary array, find the maximum number of consecutive 1s in this array if you can flip at most one 0. Example 1: Input: [1,0,1,1,0] Output: 4 E 阅读全文
posted @ 2021-01-06 01:14 CNoodle 阅读(200) 评论(0) 推荐(0)