Highest Rated Comments


GuyARoss4 karma

subset sum could be one- so given a set {1,23,4,51,21} find n numbers that could produce the sum of a given value OR as close as possible; so this algorithm needs to take into account a precision value as well.

ive tried solving this optimization with a supervised approach before with pretty poor results, so im also curious what your algorithm would yield.