3097. 最短特殊子数组,其按位或值至少为 K II
原文英文,约800词,阅读约需3分钟。发表于: 。3097. Shortest Subarray With OR at Least K II Difficulty: Medium Topics: Array, Bit Manipulation, Sliding Window You are given an array nums of non-negative integers and an integer k. An array is...
给定一个非负整数数组和一个整数k,要求找到最短的特殊子数组,使其元素的按位或值至少为k。如果不存在这样的子数组,则返回-1。可以通过滑动窗口和位操作的方法来解决此问题。