Guest User

Untitled

a guest
Feb 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. def print_confs(c_len, c_ones):
  2.  
  3. inner_print_confs("", c_len, c_ones)
  4.  
  5.  
  6. def inner_print_confs(c_prefix, c_len, c_ones):
  7.  
  8. if c_len == c_ones:
  9. print(c_prefix + "1" * c_len)
  10. return
  11.  
  12. if c_ones == 0:
  13. print(c_prefix + "0" * c_len)
  14. return
  15.  
  16. if c_len > c_ones:
  17. inner_print_confs(c_prefix + "1", c_len - 1, c_ones - 1)
  18. inner_print_confs(c_prefix + "0", c_len - 1, c_ones)
  19.  
  20.  
  21. print_confs(10, 3)
Add Comment
Please, Sign In to add comment