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. DASNAGEFERTY > > 4. CLULOOTSCEHN > > 5. USENEARSE

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 letters are in the correct order. S

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

2023-02-24 Thread Hen Hanna
On Friday, February 24, 2023 at 10:34:31 AM UTC-8, 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 pre

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