HusnaSari / Algorithms

MIT License
1 stars 1 forks source link

Binary table #6

Open emrerenJs opened 2 years ago

emrerenJs commented 2 years ago

Write a program that gives a binary number depends on a N column.

Example Binary Table (2 columns): 0 0 0 1 1 0 1 1

For example: N : 3 Output : 0 0 0 0 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 1 0 1 1 1

For example : N : 5 Output : 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 .. 1 1 1 1 1

Difficulty : 10/4

HusnaSari commented 2 years ago

Eta : Two and half hours (2.5 Hours)

HusnaSari commented 2 years ago

Eta: 2 hours