Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #60174 > unrolled thread

Re: Recursive generator for combinations of a multiset?

Started byDan Stromberg <drsalists@gmail.com>
First post2013-11-21 12:59 -0800
Last post2013-11-21 12:59 -0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Recursive generator for combinations of a multiset? Dan Stromberg <drsalists@gmail.com> - 2013-11-21 12:59 -0800

#60174 — Re: Recursive generator for combinations of a multiset?

FromDan Stromberg <drsalists@gmail.com>
Date2013-11-21 12:59 -0800
SubjectRe: Recursive generator for combinations of a multiset?
Message-ID<mailman.3015.1385067574.18130.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

On Wed, Nov 20, 2013 at 10:46 PM, John O'Hagan <research@johnohagan.com>wrote:

>
> Short story: the subject says it all, so if you have an answer already,
> fire away. Below is the long story of what I'm using it for, and why I
> think it needs to be recursive. It may even be of more general
> interest in terms of filtering the results of generators.
>

I think you probably need permutations rather than combinations.

Also, I think you'll need to form a word (partitioned off by spaces), and
then check it against a set containing /usr/share/dict/words before
recursing for the remainder of the sentence - this should speed things up a
LOT.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web