Re: Find 6-letter words that are hidden (embedded) within

2023-02-24 Thread Hen Hanna
On Friday, February 24, 2023 at 1:18:28 PM UTC-8, David Raymond wrote: > > Find 6-letter words that are hidden (embedded) within each row of letters. > > The letters are in the correct order. > > > > 1. JSOYOMFUBELR > > 2. SCDUARWDRLYE > > 3. DASN

RE: Find 6-letter words that are hidden (embedded) within

2023-02-24 Thread David Raymond
> Find 6-letter words that are hidden (embedded) within each row of letters. > The letters are in the correct order. > > 1. JSOYOMFUBELR > 2. SCDUARWDRLYE > 3. DASNAGEFERTY > 4. CLULOOTSCEHN > 5. USENEARSEYNE > The lette

Re: Find 6-letter words that are hidden (embedded) within

2023-02-24 Thread Hen Hanna
gram uses a Trie, but is pretty simple) > > > > Maybe someone would show me > how it's done using itertools, Permutations, etc. > > Wouldn't it get too slow for Letter-Seeds longer than 11 letters or so? > > > ______

Re: Find 6-letter words that are hidden (embedded) within

2023-02-24 Thread Pancho via Python-list
On 24/02/2023 18:34, Hen Hanna wrote: i just wrote a program, which... within[FunFunPython] finds: (funny,futon,python) ( 5- and 6- letter words ) (my program uses a Trie, but is pretty simple) Maybe

Find 6-letter words that are hidden (embedded) within

2023-02-24 Thread Hen Hanna
it's done usingitertools, Permutations, etc. Wouldn't it get too slow for Letter-Seeds longer than 11 letters or so? __ Find 6-letter words that are hidden (embedded) within each row of letters. The letters are in the cor