Challenge: Fractional Knapsack
Given weights and values of “n” items, put the items in a knapsack with a capacity of W.
We'll cover the following...
Problem Statement
You are given the capacity of a knapsack and a list of items that each have a certain value. Fractions of each item can be placed in the knapsack. Your goal is to ...