Advertisement
Guest User

TestCase

a guest
Sep 4th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #Test 1
  2. 'plop'=(();())
  3.  
  4. =>
  5. 'plop'=
  6. (
  7. (
  8. );
  9. (
  10. )
  11. )
  12.  
  13. #Test 2
  14. 'plop'=(();)
  15. =>
  16. 'plop'=
  17. (
  18. (
  19. );
  20. )
  21.  
  22. #Test 3
  23. 'plop'=(())
  24. =>
  25. 'plop'=
  26. (
  27. (
  28. )
  29. )
  30.  
  31. #Test 4
  32. ()
  33. =>
  34. (
  35. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement