Construct the Minimum Bitwise Array II โ€” Algorithm Visualization & Coding Challenge

Choose Your Learning Path

How would you like to learn today?
Visualize algorithms in real time, explore them step by step, or challenge yourself with a test.Choose a path to focusโ€”or scroll down to preview all options.

๐Ÿง  Active Learning

Visualize the algorithm step-by-step with interactive animations in real time.

๐Ÿ“– Passive Learning

Read the full explanation, examples, and starter code at your own pace.

๐ŸŽฏ Challenge Mode

Drag and arrange the algorithm steps in the correct execution order.

๐Ÿง  Select Active to activate

JUMP INTO VISUALIZATION
Watch algorithms run step by step.

Follow every state change, comparison, and transformation as the execution unfolds in real time.

๐Ÿ“– Select Passive to activate

Understanding Construct the Minimum Bitwise Array II
Detailed explanation and reference materials
Problem Overview

๐Ÿงฉ Construct the Minimum Bitwise Array II

Difficulty: Easy
Topics: Bit Manipulation, Arrays


๐Ÿ“˜ Problem Statement

You are given an array nums consisting of n prime integers.

Your task is to construct an array ans of length n such that for every index i:

ans[i] | (ans[i] + 1) === nums[i]

๐ŸŽฏ Objective

  • For each index i, find the minimum possible value of ans[i] that satisfies the condition.
  • If no such value exists, set ans[i] = -1.

โœจ Examples

Example 1

Input

nums = [2, 3, 5, 7]

Output

[-1, 1, 4, 3]

Explanation

  • 2 โ†’ โŒ No value satisfies the condition โ†’ -1
  • 3 โ†’ 1 | 2 = 3
  • 5 โ†’ 4 | 5 = 5
  • 7 โ†’ 3 | 4 = 7

Example 2

Input

nums = [11, 13, 31]

Output

[9, 12, 15]

Explanation

  • 9 | 10 = 11
  • 12 | 13 = 13
  • 15 | 16 = 31

๐Ÿง  Key Insight

  • The expression x | (x + 1) turns all trailing zeros into ones.
  • If nums[i] is even, it is impossible to form it using x | (x + 1).
  • For odd primes, the smallest valid x can be found by clearing the lowest set bit.

๐Ÿ“Œ Constraints

  • 1 โ‰ค nums.length โ‰ค 100
  • 2 โ‰ค nums[i] โ‰ค 1000
  • nums[i] is always a prime number

๐Ÿš€ Summary

โœ” Odd primes โ†’ usually possible
โŒ Even numbers โ†’ impossible
๐ŸŽฏ Goal โ†’ minimize ans[i]

Happy Coding! ๐Ÿ’ป๐Ÿ”ฅ

โ€” Written by Saurabh Patil โ€ข B.Tech CSE โ€ข Software Developer

Categories
arrays
bit-manipulation
leetcode-problem-of-the-day
java
Reference Link
https://leetcode.com/problems/construct-the-minimum-bitwise-array-ii/

Loading component...

Starter Code
Test, modify, or copy the starter code. Click "Visualize" to import into the canvas.
Java
Output:
Understood Algorithm, Test Me now ๐ŸŽฎ

๐ŸŽฏ Select Challenge to activate

๐Ÿง  Logic Puzzle
Think & Arrange, Don't Just Copy-Paste

Drag and arrange the algorithm steps in the correct execution order instead of spending time typing code letter by letter.

Arrange the Algorithm Correctly ๐Ÿงฉ

The algorithm is divided into three logical parts. Carefully rearrange each section in the correct order to form a complete and valid solution.

Understand Below Algorithm

Don't Know Current Algorithm ? ย 

Green text means the instruction is placed in the correct position.

Red text means the instruction is in the wrong position.

Block Colors

Instructions with the same background color indicate particular blocks start and end.

A tick mark means the instruction is correct and locked.

๐Ÿ”’ Locked steps cannot be moved. Only unlocked steps are draggable.

๐Ÿ”Š Enable sound for swap feedback and completion effects.

DrawToCode โ€” Visualize, Practice & Master Algorithms

Learn data structures and algorithms through interactive visualizations. Practice coding problems, track your progress, and understand concepts deeply.

Visualization Boardย |ย Problemsย |ย Aboutย |ย Privacy Policy
EmailLinkedInTwitterInstagramGitHub
ยฉ 2026 DrawToCode. All rights reserved.