_3133

package
v0.0.0-...-cc50aed Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 13, 2024 License: MIT Imports: 1 Imported by: 0

README

数组最后一个元素的最小值

给你两个整数 nx 。你需要构造一个长度为 n 的 **正整数 数组 nums ,对于所有 0 <= i < n - 1 ,满足 nums[i + 1] 大于 **nums[i] ,并且数组 nums 中所有元素的按位 AND 运算结果为 x

返回 nums[n - 1] 可能的** 最小 **值。

示例 1:

**输入:**n = 3, x = 4

**输出:**6

解释:

数组 nums 可以是 [4,5,6] ,最后一个元素为 6

示例 2:

**输入:**n = 2, x = 7

**输出:**15

解释:

数组 nums 可以是 [7,15] ,最后一个元素为 15

提示:

  • 1 <= n, x <= 108

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL