main.py 156 B

12345678910111213141516
  1. #!/usr/bin/env python
  2. """
  3. HashCode 2016
  4. """
  5. #
  6. ## Code goes here.
  7. #
  8. def test():
  9. """Testing Docstring"""
  10. pass
  11. if __name__=='__main__':
  12. test()