Greed-Algorithms: Added knapsack files
This commit is contained in:
20
Greedy-Algorithms/cs412_knapsack_fractional.py
Normal file
20
Greedy-Algorithms/cs412_knapsack_fractional.py
Normal file
@@ -0,0 +1,20 @@
|
||||
"""
|
||||
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()
|
||||
Reference in New Issue
Block a user