常见单词
-
连续的
-
"Consecutive" 更多用于描述时间、数字或事件的连续性,强调按顺序或连贯地发生。例如,“连续五天下雨”或“连续三个数字”。"Contiguous" 则更常用于描述物理空间上的接近或相邻,强调在空间上相接触或毗邻。
-
consecutive。Given a binary array
nums
and an integerk
, return the maximum number of consecutive1
's in the array if you can flip at mostk
0
's. -
contiguous 相邻的,连续的。Subarray: A subarray is a contiguous non-empty sequence of elements within an array.
-
-
n
is a multiple of4
.倍数 -
The window size can grow and shrink depending upon the number of zeros we have (we don't acutally have to flip the zeros here!)
-
substrig means the contiguous sequence of elements within an array
-
"O(n)" is pronounced as "oh of en" or "big oh of en." It's a way of describing the time complexity of an algorithm, indicating that the algorithm's performance grows linearly with the size of the input (n).
-
单调递增的线段 monotonically increasing line segment
- Suppose an array of length
n
sorted in ascending order - There is an integer array
nums
sorted in ascending order (with distinct values).
- Suppose an array of length
-
mid => middle