This is an example page for the Knapsack problem. The solver tries out all
possible combinations of items to find the optimal solution based on the defined values
and weights. Since the number of items is 6, there are 2^6 = 64 possible
combinations to evaluate. This brute-force approach is feasible for this small number of items,
but may not be efficient for larger datasets. This page is intended for demonstration and
educational purposes only.