Skip to main content

常见单词

  1. 连续的

    1. "Consecutive" 更多用于描述时间、数字或事件的连续性,强调按顺序或连贯地发生。例如,“连续五天下雨”或“连续三个数字”。"Contiguous" 则更常用于描述物理空间上的接近或相邻,强调在空间上相接触或毗邻。

    2. consecutive。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.

    3. contiguous 相邻的,连续的。Subarray: A subarray is a contiguous non-empty sequence of elements within an array.

  2. n is a multiple of 4.倍数

  3. 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!)

  4. substrig means the contiguous sequence of elements within an array

  5. "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).

  6. 单调递增的线段 monotonically increasing line segment

    1. Suppose an array of length n sorted in ascending order
    2. There is an integer array nums sorted in ascending order (with distinct values).
  7. mid => middle