5. Generating Binary Numbers from 1 to N
You are asked to produce a list of binary strings starting from โ1โ up to a given number N. For example, if N=5, the output should be: ["1", "10", "11", "100", "101"].
#Python #Coding
ALT David Regalado @thecodemancer_ Python