|
12 | 12 | <p align='center'>Welcome to the repository focusing on bitwise operators based problems within the domain of Data Structures and Algorithms (DSA). This repository contains various problems that utilize bitwise operations to solve common algorithmic challenges.</p> |
13 | 13 |
|
14 | 14 | ## Repository Content |
15 | | -<img src="https://img.shields.io/badge/problems%20count-07-blue" alt="Problem Count"> |
16 | | - |
17 | | -| No | Problem Name | Column Description | LeetCode | |
18 | | -|---|---|---|---| |
19 | | -|1| [1 - Check a Number is Odd or Even](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/1%20-%20Check%20a%20Number%20is%20Odd%20or%20Even) | Function to check if a number is odd or even using bitwise operators. | None | |
20 | | -|2| [2 - Count the no of 1s in Binary Representation](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/2%20-%20Count%20the%20no%20of%201s%20in%20Binary%20Representation) | Function to count the number of 1s in the binary representation. | [Link](https://leetcode.com/problems/number-of-1-bits/) | |
21 | | -|3| [3 - Swap Two Numbers with Temporary Variable](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/3%20-%20Swap%20Two%20Numbers%20with%20Temporary%20Variable) | Function to swap two numbers without using a temporary variable. | None | |
22 | | -|4| [4 - Find the Single Non-Duplicate Number](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/4%20-%20Find%20the%20Single%20Non-Duplicate%20Number) | Function to find the single non-duplicate number in an array. | [Link](https://leetcode.com/problems/single-number/) | |
23 | | -|5| [5 - Check The Number is Power of Two](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/5%20-%20Check%20The%20Number%20is%20Power%20of%20Two) | Function to check if a number is a power of two using bitwise operators. | [Link](https://leetcode.com/problems/power-of-two/) | |
24 | | -|6| [6 - Find the Missing Number](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/6%20-%20Find%20the%20Missing%20Number) | Function to find the missing number in an array of consecutive integers. | [Link](https://leetcode.com/problems/missing-number/) | |
25 | | -|7| [7 - Convert String Binary Number to Decimal](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/7%20-%20Convert%20String%20Binary%20Number%20to%20Decimal) | Function to convert a binary string representation to a decimal integer. | [Link](https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/) | |
| 15 | +<p> |
| 16 | +<img src="https://img.shields.io/badge/problems%20count-05-orange?logo=leetcode" alt="LeetCode"> |
| 17 | +<img src="https://img.shields.io/badge/problems%20count-00-darkgreen?logo=geeksforGeeks" alt="GeeksforGeeks"> |
| 18 | +<img src="https://img.shields.io/badge/total%20problems%20count-07-blue" alt="Problem Count"> |
| 19 | +</p> |
| 20 | + |
| 21 | +| No | Problem Name | Column Description | LeetCode | GFG | |
| 22 | +|---|---|---|---|---| |
| 23 | +| 1 | [Check a Number is Odd or Even](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/1%20-%20Check%20a%20Number%20is%20Odd%20or%20Even) | Function to check if a number is odd or even using bitwise operators. | Non | Non | |
| 24 | +| 2 | [Count the no of 1s in Binary Representation](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/2%20-%20Count%20the%20no%20of%201s%20in%20Binary%20Representation) | Function to count the number of 1s in the binary representation. | [Link](https://leetcode.com/problems/number-of-1-bits/) | Non | |
| 25 | +| 3 | [Swap Two Numbers with Temporary Variable](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/3%20-%20Swap%20Two%20Numbers%20with%20Temporary%20Variable) | Function to swap two numbers without using a temporary variable. | Non | Non | |
| 26 | +| 4 | [Find the Single Non-Duplicate Number](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/4%20-%20Find%20the%20Single%20Non-Duplicate%20Number) | Function to find the single non-duplicate number in an array. | [Link](https://leetcode.com/problems/single-number/) | Non | |
| 27 | +| 5 | [Check The Number is Power of Two](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/5%20-%20Check%20The%20Number%20is%20Power%20of%20Two) | Function to check if a number is a power of two using bitwise operators. | [Link](https://leetcode.com/problems/power-of-two/) | Non | |
| 28 | +| 6 | [Find the Missing Number](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/6%20-%20Find%20the%20Missing%20Number) | Function to find the missing number in an array of consecutive integers. | [Link](https://leetcode.com/problems/missing-number/) | Non | |
| 29 | +| 7 | [Convert String Binary Number to Decimal](https://github.com/JawadSher/Data-Structures-Algorithms-Based-Problems/tree/main/03%20-%20Bitwise%20Operators%20Based%20Problems/7%20-%20Convert%20String%20Binary%20Number%20to%20Decimal) | Function to convert a binary string representation to a decimal integer. | [Link](https://leetcode.com/problems/convert-binary-number-in-a-linked-list-to-integer/) | Non | |
26 | 30 |
|
27 | 31 | ## Folder Structure |
28 | 32 |
|
|
0 commit comments