Files
CS412-Applied-Algorithms/cs412_code_template.py

21 lines
373 B
Python
Raw Normal View History

2025-09-13 15:36:12 -04:00
"""
2025-09-13 21:22:37 -04:00
name: Your name(s) here
2025-09-13 15:36:12 -04:00
2025-09-13 21:22:37 -04:00
Honor Code and Acknowledgments:
2025-09-13 15:36:12 -04:00
2025-09-13 21:22:37 -04:00
This work complies with the JMU Honor Code.
2025-09-13 15:36:12 -04:00
2025-09-13 21:22:37 -04:00
Comments here on your code and submission.
2025-09-13 15:36:12 -04:00
"""
2025-09-13 21:22:37 -04:00
2025-09-13 15:36:12 -04:00
# All modules for CS 412 must include a main method that allows it
# to imported and invoked from other python scripts
def main():
# your code here
pass
2025-09-13 21:22:37 -04:00
2025-09-13 15:36:12 -04:00
if __name__ == "__main__":
main()