Advertisement
Guest User

Untitled

a guest
May 3rd, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. a = 1 + 2
  2. b = a + 3
  3. c = a + b
  4. return a + b + c
  5.  
  6. // Iteration 1
  7. a = 3
  8. b = 3 + 3
  9. c = 3 + b
  10. return 3 + b + c
  11.  
  12. // Iteration 2
  13. a = 3
  14. b = 6
  15. c = 3 + 9
  16. return 3 + 6 + c
  17.  
  18. // Iteration 3
  19. a = 3
  20. b = 6
  21. c = 12
  22. return 9 + 12
  23.  
  24. // Iteration 4 (With Dead Assignment Removal)
  25. return 21
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement