Tagged Questions

7
votes
3answers
243 views

How to split a list into subsets with no repeating elements in python

I need code that takes a list (up to n=31) and returns all possible subsets of n=3 without any two elements repeating in the same subset twice (think of people who are teaming up in groups of 3 with ...
4
votes
4answers
209 views

efficient list mapping in python

I have the following input: input = [(dog, dog, cat, mouse), (cat, ruby, python, mouse)] and trying to have the following output: outputlist = [[0, 0, 1, 2], [1, 3, 4, 2]] outputmapping = {0:dog, ...
3
votes
2answers
75 views

All possible (monogamous) pairings of two lists (of boys and girls)

I have these two lists: boys = [1,2,3] girls = [1,2,3] How would you build all possible (monogamous) pairings [boy, girl]? With only 3 of both boys and girls, I think this is the list of all the ...
2
votes
2answers
429 views

How to turn the result (in python) of itertools.permutations(“0123456789”) into list of strings

In Python, I am using list(itertools.permutations("0123456789")), and I am receiving (I as expected) a list of tuples of singled character strings. Is there a way to turn that result into a list of ...
1
vote
5answers
373 views

Python - Speed up generation of permutations of a list (and process of checking if permuations in Dict)

I need a faster way to generate all permutations of a list, then check if each one is in a dictionary. for x in range (max_combo_len, 0, -1): possible_combos = [] ...
1
vote
3answers
1k views

“Slice lists” and “the ellipsis” in Python; slicing lists and lists of lists with lists of slices

Original question: Can someone tell me how to use "slice lists" and the "ellipsis"? When are they useful? Thanks. Here's what the language definition says about "slice_list" and "ellipsis"; Alex ...
1
vote
1answer
231 views

Dynamically decompose list into variables in Python

I have 2 dimensional list created at runtime (the number of entries in either dimension is unknown). For example: long_list = [ [2, 3, 6], [3, 7, 9] ] I want to iterate through it by getting the ...
0
votes
1answer
65 views

Python: Using itertools to get previous, current, and next item in list from text file

I have setup my code as outlined in this answer (shown below): from itertools import tee, islice, chain, izip def previous_and_next(some_iterable): prevs, items, nexts = tee(some_iterable, 3) ...