DSA Day 66/100
Topic: Queue
Questions Successfully Completed: 1
1) Generate Binary NumberEasy
QuestionInput: N = 5 Output: 1 10 11 100 101 Explanation: Binary numbers from 1 to 5 are 1 , 10 , 11 , 100 and 101.
static ArrayList<String> generate(int N)
{
...
preetikaprakash.hashnode.dev1 min read