Word containing other words

?Note: This page may contain content that is offensive or inappropriate for some readers.

Found 731 words containing other. Check our Scrabble Word Finder, Wordle solver, Words With Friends cheat dictionary, and WordHub word solver to find words that contain other. Or use our Unscramble word solver to find your best possible play! Related: Words that start with other, Words that end in other

  • Scrabble
  • Words With Friends
  • WordHub
  • Crossword

Is there a technical name for a word that contains other words? I’m thinking about the contained words having all the letters in the order they appear in the original word. For example, «spawn» contains spa, pawn, paw. I’m also hoping to find a more technical word than «Kangaroo words» or «Matryoshka words» if there is one—something like «paraprosdokian» or «palindrome» etc.

asked Feb 19, 2016 at 22:13

Thom Blair III's user avatar

1

Kangaroo words may be a special case of what you describe. They are words that contain embedded words (possibly disjointed) which are roughly synonymous with the larger, host word. For example, «observe» contains «see», albeit disjointed (here).

I know of no technical term for the more general phenomenon, but you might call them Matryoshka words, as is done both here and in the first link. It’s suggestive of what you want and colorful.

Community's user avatar

answered Feb 19, 2016 at 22:21

DyingIsFun's user avatar

DyingIsFunDyingIsFun

17.8k3 gold badges45 silver badges72 bronze badges

1

This is a duplicate of a closed question referring to «embedded words.» The top ranked answer was subsequence from the mathematics. However, the natural transition to subword is also possible. It is a mathematical term [Wiktionary] meaning «substring» which is more particular for contiguous symbols.

Community's user avatar

answered Feb 20, 2016 at 4:41

Stu W's user avatar

Stu WStu W

7,0525 gold badges24 silver badges40 bronze badges

1

A list of scrabble words starting with Other

We’ve put together a list of 98 words that contain the letters
«Other» for word games like Scrabble and Words with Friends.

We’ve organized this list by starting with the highest scoring Scrabble words, and then by
the number of letters that the word has. Use the Table Of Contents below to navigate to the exact
word lists you’re looking for.

Whether you’re playing Wordle, Scrabble, or any word game like it, Wordfind can help you get ahead
of the pack and win game after game.

Other is a playable Scrabble Word!

Contents

  • Highest scoring words with Other
  • 11-letter words with Other
  • 10-letter words with Other
  • 9-letter words with Other
  • 8-letter words with Other
  • 7-letter words with Other
  • 6-letter words with Other
  • 5-letter words with Other
  • FAQs about words with Other

The highest scoring words with Other

Want to go straight to the words that will get you the best score? Here are all the highest scoring words with other,
not including the 50-point bonus if they use seven letters.

Top words with Other Scrabble Points Words With Friends Points
pothers 12 12
brother 12 12
mothers 12 12
soother 10 9
smother 12 12
mothery 15 14
bothers 12 12
frother 13 12
another 10 10
potherb 14 15

98 Scrabble words that contain Other

FAQ on words containing Other

What are the best Scrabble words with Other?

The highest scoring Scrabble word containing Other is Hypothermic, which is worth at least 26 points without
any bonuses.
The next best word with Other is brother, which is worth 12 points.
Other high score words with Other are
mothers (12),
soother (10),
smother (12),
mothery (15),
bothers (12),
frother (13),
another (10),
and
potherb (14).

How many words contain Other?

There are 98 words that contaih Other in the Scrabble dictionary.
Of those
26 are 11 letter
words,
25 are 10 letter
words,
17 are 9 letter
words,
13 are 8 letter
words,
10 are 7 letter
words,
6 are 6 letter
words,
and
1 is a 5 letter
word.

There exists solution using string matching algorithm KMP and graphs.

Algorithm:

1) Iterate over words. Set each word for «main word», the word you want to build. Execute following steps for each such word.

2) You fixed one word, lets call it W. Now iterate over all words again and run KPM comparing them to W. Now you can build a graph on letters of word W. Lets explain on example:

W = "abacdeeee"
Other_word = ["aba", "cde", "eee"]

Word "aba" would connect letter 1 in word W to letter 4.
Word "cde" would connect 4 to 7.
Word "eee" would connect 7 to 9.

Each letter in W is node and other words will make edges. 
If there exists a path between first and last letter, which you can 
check using BFS/DFS, you can build word W out of other words.

3) Repeat the process for each word and choose the longest that can be built from others.

Time complexity:

Lets say N is number of words and L is average length.

For a single word you run KMP with each other word, which would take O(N * (L + L)). Building graph takes O(N^2) in worst case, same for BFS. For each word W you spend O(NL + N^2) worst case, but number of edges will most likely be proportional to N, so average is O(NL).

As you need to the above for each N, you get result:

Worst complexity: O(N^2*L + N^3)

Average complexity: O(N^2*L)

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

1
branch

0
tags


Code

  • Use Git or checkout with SVN using the web URL.

  • Open with GitHub Desktop

  • Download ZIP

Latest commit

Files

Permalink

Failed to load latest commit information.

Type

Name

Latest commit message

Commit time

======================
Programming Problem - Find Longest Word Made of Other Words
======================

Write a program that reads a file containing a sorted list of words (one
word per line, no spaces, all lower case), then identifies the longest
word in the file that can be constructed by concatenating copies of
shorter words also found in the file.

For example, if the file contained:

       cat
       cats
       catsdogcats
       catxdogcatsrat
       dog
       dogcatsdog
       hippopotamuses
       rat
       ratcatdogcat

The answer would be 'ratcatdogcat' - at 12 letters, it is the longest
word made up of other words in the list.  The program should then
go on to report how many of the words in the list can be constructed 
of other words in the list.


Понравилась статья? Поделить с друзьями:
  • Word containing all vowels
  • Word containing all letters of alphabet
  • Word constructions in english
  • Word construction in english
  • Word construction and engineering