DEV Community

Cover image for Decimal to Binary

Decimal to Binary

Scott Gordon on October 08, 2021

# decimal_to_binary.py # This program converts a decimal number to binary using a stack. # by: Scott Gordon from stack import Stack def conver...
Collapse
 
sagordondev profile image
Scott Gordon

Yes, I was aware of this. But thank you just the same for your feedback. Sometimes I brute force things just to see if I can figure them out without a library.