SarthakKeshari / CPP-Questions-and-Solutions

This repository aims to solve and create new problems from different spheres of coding. A path to help students to get access to solutions and discuss their doubts.
MIT License
47 stars 132 forks source link

Gray Code #391

Closed diwakarsingh18277 closed 2 years ago

diwakarsingh18277 commented 2 years ago

Enter your question -

An n-bit gray code sequence is a sequence of 2n integers where:

Every integer is in the inclusive range [0, 2n - 1], The first integer is 0, An integer appears no more than once in the sequence, The binary representation of every pair of adjacent integers differs by exactly one bit, and The binary representation of the first and last integers differs by exactly one bit. Given an integer n, return any valid n-bit gray code sequence.

Enter link to the question(if question belongs to any online platform) -

https://leetcode.com/problems/gray-code/

Tags for the question(eg - Array, Basic, Stack, etc.) -

Recursion, Bit manipulation.

diwakarsingh18277 commented 2 years ago

Kindly assign this issue to me.

SarthakKeshari commented 2 years ago

@diwakarsingh18277, Kindly add your solution to "leetcode" folder. Deadline - 10/10/2021