Tagged Questions
5
votes
4answers
442 views
Is there an equivalent of Python's itertools for Java?
I'm searching for a library (preferably generic) that generates iterable combinations and permutations of data contained in collections. Cartesian product would also be nice.
The best way of ...
2
votes
2answers
111 views
A combinations_with_replacement function in fortran?
I wrote a small module in python for get all the possibilities of x products that fit into y total cost. The module runs fine, but slow. It takes about six hours to calculate six products up to 30 ...
1
vote
1answer
86 views
Python itertools.combinations() memory problems
I'm processing a huge number of combinations of items (from League of Legends), about 72 million, all of which are fed into a function that calculates how beneficial they are.
We're trying to find ...
1
vote
5answers
264 views
Combinatorial optimisation of a distance metric
I have a set of trajectories, made up of points along the trajectory, and with the coordinates associated with each point. I store these in a 3d array ( trajectory, point, param). I want to find the ...
-1
votes
4answers
99 views
How to combine lines of a single text file in python?
I've searched, but found nothing to help.. This is an example:
List.txt
a
b
c
d
I want to be able to get an output like this:
Output.txt
ab
ac
ad
ba
bc
...