Files
CS412-Applied-Algorithms/Greedy-Algorithms/cs412_knapsack_fractional.py

21 lines
373 B
Python
Raw Normal View History

2025-10-03 10:40:05 -04:00
"""
name: Nicholas Tamassia
Honor Code and Acknowledgments:
This work complies with the JMU Honor Code.
Comments here on your code and submission.
"""
# 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
if __name__ == "__main__":
main()