Search Results

2
votes

How can I get the results of a Perl script in Python script?

You could serialize the results to some sort of a string format, print this to standard output in the Perl script. Then, from python call the perl script and redirect the results of stdout to a var …
2
votes

Algorithm to Divide a list of numbers into 2 equal sum lists

Well, you can find a solution to a percentage precision in polynomial time, but to actually find the optimal (absolute minimal difference) solution, the problem is NP-complete. This means that ther …