Skip to main content

orthography - What is the longest word you can come up with that the letters are all in alphabetical order?



It's Friday again, how about some fun to get us into the weekend?


What is the longest word you can come up with for which all the letters in that word are in alphabetical order?


Rules:



  • English words only

  • Can't be a name of a place, person or other proper noun.

  • if it contains the same letter twice in a row, that does not disqualify it.

  • No fair looking it up on Google!


Update: One more rule to help you guys out.



  • The word can be in either ascending or descending alphabetical order.



Answer



OK, well another Friday, another Perl script. Here’s this week’s:


#!/usr/local/bin/perl
use warnings;
use strict;
my @alphas;
while (<>) {
chomp;
my @words = split /s+/;
foreach my $word (@words) {
$word =~ s/[^A-Za-z]//g;
next unless $word =~ /^[A-Za-z]{2,}$/;
$word = uc $word;
my @letters = split //, $word;
my $sorted_word = join '', sort @letters;
if ($sorted_word eq $word) {
push @{$alphas[length $word]}, $word;
}
}
}

for (1..2) {
print join "n", @{pop @alphas};
print "n=====n";

}

This time I used as the input corpus the AGID word list from Kevin’s Word Lists:


And got this output:


AEGILOPS
=====
BILLOWY
DIKKOPS
=====

Aegilops (length 8) is a genus of grasses, and so is proper noun and might not count. Billowy (length 7) is definitely a commonly-used, legit word. Dikkops (length 7), also known as Stone-curlews, are a South African bird.


Comments

Popular posts from this blog

etymology - Origin of the greeting "Sweet dreams".

Does anybody know the etymology of the phrase "sweet dreams"? I tried googling but did not find anything satisfying. Is this a relatively new phrase of the modern world or has this been in use for some time? I think it's the latter one. Answer The OED has the interjection as "a farewell to someone going to bed" from the 20th century: 1908 Sears Roebuck Catal. 198/1 Tenor Solos..Good Bye, Sweet Dreams, Good Bye. But it goes back until at least the 19th and possibly 18th centuries. John Wolcot, writing under the pseudonym of Peter Pindar, used it in his poem "Orson and Ellen; A Legendary Tale" published in 1801: Also from 1801 in The infernal Quixote (Page 287) by Charles Lucas: In the March 1776 of The Universal Magazine was published "The Serenade. A Pastoral Tale. From the German of Gesner" , where the shepherd Daphnis watches over his beloved as she sleeps and sings: The same tale appears in 1776's as Idyl XI, " Daphnis ...

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

What are the similarities between the relationships of the characters in The Outsiders and Romeo and Juliet?

At first glance, it might appear as if the characters in  The Outsiders  by S. E. Hinton and  Romeo and Juliet  by William Shakespeare do not have much in common; however, when one isolates the core of the conflicts, it becomes clear that the relationships in both stories are rooted in rivalry and secrecy.  In both  The Outsiders  and  Romeo and Juliet , an overarching theme is rivalry. While   socioeconomic status separates the greasers from the Socs in The Outsiders , last names separates the Montagues from the Capulets, who appear to be relatively equal in terms of socioeconomic status. Due to these rivalries, there are instances of deadly interactions in both stories. In  The Outsiders , Johnny kills Bob (whether his actions were justified or not is debatable). In  Romeo and Juliet , Romeo kills Tybalt and Paris, and Tybalt kills Mercutio. These deaths have profound effects on the main characters. In Ponyboy's case, the Johnny's death and other events in the novel inspire h...