Problem Statement
A glossary is an alphabetical list of terms in some specialized field of knowledge, usually published as an appendix to a text on that field.
In this problem, you will be given a
For each letter 'A'-'Z', if there is at least one term that begins with that letter (case-insensitive), create an entry for the letter in the following format:
- Place the uppercase letter on the first line.
- Place 19 dashes ('-') on the second line.
- Place each term that begins with the letter on a new line, in alphabetical order (again, case-insensitive). Each term should be preceded by exactly 2 spaces.
- Pad all lines with spaces on the right side until they are exactly 19 characters wide.
Now, sort these entries alphabetically by their letter, and split them into two columns. The left column should contain the entries for letters 'A' through 'M', inclusive, and the right column should contain the entries for letters 'N' through 'Z', inclusive. Each column must be exactly 19 characters wide, and the two columns must be separated by exactly 2 spaces. See examples for clarification.
Definition
- Class:
- Glossary
- Method:
- buildGlossary
- Parameters:
- String[]
- Returns:
- String[]
- Method signature:
- String[] buildGlossary(String[] items)
- (be sure your method is public)
Notes
- Two strings differing only in capitalization are considered the same, for example "aa" and "aA" are same.
Constraints
- items will contain between 1 and 50 elements, inclusive.
- Each element of items will contain between 1 and 17 characters, inclusive.
- Each element of items will contain letters ('A' - 'Z', 'a' - 'z') and spaces (' ') only.
- Each element of items will start with a letter.
- Each term will appear at most once in items.
Examples
{"Canada", "France", "Germany", "Italy", "Japan", "Russia", "United Kingdom", "United States"}
Returns: {"C R ", "------------------- -------------------", " Canada Russia ", "F U ", "------------------- -------------------", " France United Kingdom ", "G United States ", "------------------- ", " Germany ", "I ", "------------------- ", " Italy ", "J ", "------------------- ", " Japan " }
The Group of Eight. Together, these countries represent about 65% of the world economy.
{"alpha", "beta", "gamma", "delta", "omega"}
Returns: {"A O ", "------------------- -------------------", " alpha omega ", "B ", "------------------- ", " beta ", "D ", "------------------- ", " delta ", "G ", "------------------- ", " gamma " }
{"AVL tree", "backtracking", "array", "balanced tree", "binary search"}
Returns: {"A ", "------------------- ", " array ", " AVL tree ", "B ", "------------------- ", " backtracking ", " balanced tree ", " binary search " }
The second column might be empty, but you need to pad each line of the result with spaces.
{"XXXXXXXXXXXXXXXXX", "YYYYYYYYYYYYYYYYY", "ZZZZZZZZZZZZZZZZZ"}
Returns: {" X ", " -------------------", " XXXXXXXXXXXXXXXXX", " Y ", " -------------------", " YYYYYYYYYYYYYYYYY", " Z ", " -------------------", " ZZZZZZZZZZZZZZZZZ" }
The first column may be empty too.
{"Asteria", "Astraeus", "Atlas", "Clymene", "Coeus", "Crius", "Cronus", "Dione", "Epimetheus", "Helios", "Hyperion", "Iapetus", "Leto", "Mnemosyne", "Oceanus", "Ophion", "Phoebe", "Prometheus", "Rhea", "Tethys", "Theia", "Themis"}
Returns: {"A O ", "------------------- -------------------", " Asteria Oceanus ", " Astraeus Ophion ", " Atlas P ", "C -------------------", "------------------- Phoebe ", " Clymene Prometheus ", " Coeus R ", " Crius -------------------", " Cronus Rhea ", "D T ", "------------------- -------------------", " Dione Tethys ", "E Theia ", "------------------- Themis ", " Epimetheus ", "H ", "------------------- ", " Helios ", " Hyperion ", "I ", "------------------- ", " Iapetus ", "L ", "------------------- ", " Leto ", "M ", "------------------- ", " Mnemosyne " }
Titans.
{"Assessor", "adverBs", "aperitif", "Artery", "Airliners", "assistants", "Assembly", "anthropOlogY", "addictive", "Astronomers", "Averages", "Already", "AcqUisition", "Adjudging", "Adduced", "Algal", "Agronomy", "Achieving", "Aureoles", "administeriNg", "adulteration", "aspen", "abseiLs", "Alpine", "affixed", "Amuses", "Act", "Adjoined", "anyhow", "antiperspirant", "AiRplanes", "AccenTuate", "adulterated", "Apiece", "AffablE", "anodyne", "alarmist", "as", "Album", "Almoners", "Affiliates", "AnthIlLs", "anTiquities", "Aspirin", "affectations", "Abutting", "Allotting", "Allergens", "accessorised", "aBased"}
Returns: {"A ", "------------------- ", " aBased ", " abseiLs ", " Abutting ", " AccenTuate ", " accessorised ", " Achieving ", " AcqUisition ", " Act ", " addictive ", " Adduced ", " Adjoined ", " Adjudging ", " administeriNg ", " adulterated ", " adulteration ", " adverBs ", " AffablE ", " affectations ", " Affiliates ", " affixed ", " Agronomy ", " Airliners ", " AiRplanes ", " alarmist ", " Album ", " Algal ", " Allergens ", " Allotting ", " Almoners ", " Alpine ", " Already ", " Amuses ", " anodyne ", " AnthIlLs ", " anthropOlogY ", " antiperspirant ", " anTiquities ", " anyhow ", " aperitif ", " Apiece ", " Artery ", " as ", " aspen ", " Aspirin ", " Assembly ", " Assessor ", " assistants ", " Astronomers ", " Aureoles ", " Averages " }
{"Malefactors", "Mains", "mooning", "memos", "metamorphosis", "Mightier", "Morgue", "Manipulative", "MajOrdomos", "marketeers", "Mashing", "Match", "Mosaics", "Meantime", "mobilisation", "measurEments", "maximum", "molests", "moI", "Mincing", "MournfulnESs", "Mandate", "Merciful", "Mailman", "Mistrust", "Mulish", "mitigating", "matRons", "molding", "Missteps", "Masochists", "Melodramas", "Muzzled", "mails", "MoTto", "Moccasins", "mistimes", "meanest", "MilOmeters", "meteors", "Mediums", "midsHipman", "motherly", "marginalizing", "MIght", "movers", "Marring", "Mirrors", "misguidedlY", "mincemeat"}
Returns: {"M ", "------------------- ", " Mailman ", " mails ", " Mains ", " MajOrdomos ", " Malefactors ", " Mandate ", " Manipulative ", " marginalizing ", " marketeers ", " Marring ", " Mashing ", " Masochists ", " Match ", " matRons ", " maximum ", " meanest ", " Meantime ", " measurEments ", " Mediums ", " Melodramas ", " memos ", " Merciful ", " metamorphosis ", " meteors ", " midsHipman ", " MIght ", " Mightier ", " MilOmeters ", " mincemeat ", " Mincing ", " Mirrors ", " misguidedlY ", " Missteps ", " mistimes ", " Mistrust ", " mitigating ", " mobilisation ", " Moccasins ", " moI ", " molding ", " molests ", " mooning ", " Morgue ", " Mosaics ", " motherly ", " MoTto ", " MournfulnESs ", " movers ", " Mulish ", " Muzzled " }
{"Cancan", "Altos", "ComFortless", "busied", "battlegrounds", "crumbs", "Acreages", "AirworthIness", "Anoraks", "calligraphy", "Carburetor", "beauty", "Airlines", "animatedly", "buskers", "Confessing", "Barricades", "anklets", "Compartmentalize", "bitty", "camisole", "accomplish", "connoted", "avalanches", "bricklayer", "brogue", "Clairvoyant", "bunkhouSe", "comprehends", "belch", "blockade", "consortia", "Bridegrooms", "beat", "conduits", "cuckoLded", "Cloudiest", "amend", "craggy", "compressing", "amBush", "Assemblywoman", "Appraising", "Austere", "Credulousness", "coppers", "bloating", "chatterBox", "Brawled", "appoiNtees"}
Returns: {"A ", "------------------- ", " accomplish ", " Acreages ", " Airlines ", " AirworthIness ", " Altos ", " amBush ", " amend ", " animatedly ", " anklets ", " Anoraks ", " appoiNtees ", " Appraising ", " Assemblywoman ", " Austere ", " avalanches ", "B ", "------------------- ", " Barricades ", " battlegrounds ", " beat ", " beauty ", " belch ", " bitty ", " bloating ", " blockade ", " Brawled ", " bricklayer ", " Bridegrooms ", " brogue ", " bunkhouSe ", " busied ", " buskers ", "C ", "------------------- ", " calligraphy ", " camisole ", " Cancan ", " Carburetor ", " chatterBox ", " Clairvoyant ", " Cloudiest ", " ComFortless ", " Compartmentalize ", " comprehends ", " compressing ", " conduits ", " Confessing ", " connoted ", " consortia ", " coppers ", " craggy ", " Credulousness ", " crumbs ", " cuckoLded " }
{"griffon", "geNerics", "hALlucinaTe", "gangly", "Granting", "Fraud", "glibness", "Fustier", "Fairylands", "farms", "Hydroplaned", "Fens", "hypnotised", "Galaxies", "Grooming", "highfalutin", "Gyroscopic", "Hoovering", "Hypothesize", "Hotfoots", "firetraps", "famous", "HayricK", "hurtfullY", "Fronts", "hiccup", "height", "grenades", "Heated", "gobbled", "Handicaps", "hagiographies", "Girders", "Grandee", "Homebody", "Hideouts", "gyrates", "fells", "Grates", "Hairbrushes", "grommet", "GaUzy", "Ganglions", "hotpots", "Heralded", "Ferry", "guardrail", "Fleeces", "humidifies", "Hopes"}
Returns: {"F ", "------------------- ", " Fairylands ", " famous ", " farms ", " fells ", " Fens ", " Ferry ", " firetraps ", " Fleeces ", " Fraud ", " Fronts ", " Fustier ", "G ", "------------------- ", " Galaxies ", " Ganglions ", " gangly ", " GaUzy ", " geNerics ", " Girders ", " glibness ", " gobbled ", " Grandee ", " Granting ", " Grates ", " grenades ", " griffon ", " grommet ", " Grooming ", " guardrail ", " gyrates ", " Gyroscopic ", "H ", "------------------- ", " hagiographies ", " Hairbrushes ", " hALlucinaTe ", " Handicaps ", " HayricK ", " Heated ", " height ", " Heralded ", " hiccup ", " Hideouts ", " highfalutin ", " Homebody ", " Hoovering ", " Hopes ", " Hotfoots ", " hotpots ", " humidifies ", " hurtfullY ", " Hydroplaned ", " hypnotised ", " Hypothesize " }
{"neaten", "nomenclatures", "navigating", "Notepads", "newts", "naturalisTs", "Nowhere", "niTrogen", "neatest", "Neutered", "nOnresidents", "negroid", "Nixed", "NaRcissi", "Neatness", "noisome", "neonatal", "Nexus", "noodling", "Narrators", "necromAnceRs", "Nepotistic", "novelette", "Neckties", "nestling", "newcomer", "Northern", "Newspapers", "nobleman", "Necking", "nook", "naval", "Nameplates", "Nudity", "Night", "nominees", "Nippers", "Nutritious", "natuRalizing", "Nobility", "nicest", "Newsstands", "NEighed", "Nothingness", "naturalness", "Normalizing", "neophytes", "Naming", "none", "Nominate"}
Returns: {" N ", " -------------------", " Nameplates ", " Naming ", " NaRcissi ", " Narrators ", " naturalisTs ", " natuRalizing ", " naturalness ", " naval ", " navigating ", " neaten ", " neatest ", " Neatness ", " Necking ", " Neckties ", " necromAnceRs ", " negroid ", " NEighed ", " neonatal ", " neophytes ", " Nepotistic ", " nestling ", " Neutered ", " newcomer ", " Newspapers ", " Newsstands ", " newts ", " Nexus ", " nicest ", " Night ", " Nippers ", " niTrogen ", " Nixed ", " Nobility ", " nobleman ", " noisome ", " nomenclatures ", " Nominate ", " nominees ", " none ", " nOnresidents ", " noodling ", " nook ", " Normalizing ", " Northern ", " Notepads ", " Nothingness ", " novelette ", " Nowhere ", " Nudity ", " Nutritious " }
{"TowNee", "Trenchant", "tulipS", "Trades", "trialIng", "teletypewriters", "tunelessly", "Trustees", "theism", "Tastings", "thorns", "torpid", "Transactions", "tyranny", "TArred", "testing", "tenses", "Taping", "toga", "Tenderised", "ticKled", "TobacConists", "thrift", "Tribunals", "transcended", "tom", "tendrils", "typecasts", "twitches", "triviality", "Tightness", "Tzar", "tranSlating", "TrIumphalist", "Trainer", "Trumpet", "Threatens", "TAPpeTs", "Tablespoonfuls", "Tassels", "Tracksuits", "trilbIes", "transforms", "Titivate", "TaRtly", "they", "Testified", "Truces", "tobogganIng", "TrAnssexuAls"}
Returns: {" T ", " -------------------", " Tablespoonfuls ", " Taping ", " TAPpeTs ", " TArred ", " TaRtly ", " Tassels ", " Tastings ", " teletypewriters ", " Tenderised ", " tendrils ", " tenses ", " Testified ", " testing ", " theism ", " they ", " thorns ", " Threatens ", " thrift ", " ticKled ", " Tightness ", " Titivate ", " TobacConists ", " tobogganIng ", " toga ", " tom ", " torpid ", " TowNee ", " Tracksuits ", " Trades ", " Trainer ", " Transactions ", " transcended ", " transforms ", " tranSlating ", " TrAnssexuAls ", " Trenchant ", " trialIng ", " Tribunals ", " trilbIes ", " TrIumphalist ", " triviality ", " Truces ", " Trumpet ", " Trustees ", " tulipS ", " tunelessly ", " twitches ", " typecasts ", " tyranny ", " Tzar " }
{"Toady", "Tiler", "taskmasters", "tuba", "tiResOmely", "Typos", "TEammate", "thyroid", "Turtledove", "titch", "toddle", "Thong", "Tenth", "ToRmentors", "tramcArs", "theorists", "tenderised", "technologies", "trivially", "Talc", "Townhouse", "Tunefully", "troughs", "Tape", "tromping", "titivating", "thResholds", "telecasting", "takes", "Transported", "thinker", "TortUre", "topographer", "timElinesS", "tricky", "tapioca", "toss", "Testing", "Tyrannies", "tumblEdown", "TeletypewritEr", "tautologically", "triUmphAlism", "thriftIness", "Transceiver", "tonnEs", "Topee", "tissue", "tenaciously", "Tuque"}
Returns: {" T ", " -------------------", " takes ", " Talc ", " Tape ", " tapioca ", " taskmasters ", " tautologically ", " TEammate ", " technologies ", " telecasting ", " TeletypewritEr ", " tenaciously ", " tenderised ", " Tenth ", " Testing ", " theorists ", " thinker ", " Thong ", " thResholds ", " thriftIness ", " thyroid ", " Tiler ", " timElinesS ", " tiResOmely ", " tissue ", " titch ", " titivating ", " Toady ", " toddle ", " tonnEs ", " Topee ", " topographer ", " ToRmentors ", " TortUre ", " toss ", " Townhouse ", " tramcArs ", " Transceiver ", " Transported ", " tricky ", " triUmphAlism ", " trivially ", " tromping ", " troughs ", " tuba ", " tumblEdown ", " Tunefully ", " Tuque ", " Turtledove ", " Typos ", " Tyrannies " }
{"putsches", "phonemic", "Quashed", "Schoolwork", "RedeploymeNt", "Quadrupeds", "rivulET", "quarterly", "Tampered", "quarto", "Princesses", "radish", "togging", "steelworkers", "pares", "Quenches", "Unplaced", "quip", "Smaller", "Precipitately", "tiebreakers", "Questioners", "rapiers", "unmarked", "Ultraviolet", "tramps", "undulations", "UnvArNished", "ValenciEs", "Quelling", "unthinkinglY", "skid", "quitters", "scrunching", "Vigour", "tarmacked", "Sandblast", "Teacup", "quaff", "resonantly", "Spandex", "retreaded", "RApidity", "Twisty", "Quins", "retroactively", "Verrucas", "pretenses", "pOrterhouse", "tumbledown"}
Returns: {" P ", " -------------------", " pares ", " phonemic ", " pOrterhouse ", " Precipitately ", " pretenses ", " Princesses ", " putsches ", " Q ", " -------------------", " Quadrupeds ", " quaff ", " quarterly ", " quarto ", " Quashed ", " Quelling ", " Quenches ", " Questioners ", " Quins ", " quip ", " quitters ", " R ", " -------------------", " radish ", " RApidity ", " rapiers ", " RedeploymeNt ", " resonantly ", " retreaded ", " retroactively ", " rivulET ", " S ", " -------------------", " Sandblast ", " Schoolwork ", " scrunching ", " skid ", " Smaller ", " Spandex ", " steelworkers ", " T ", " -------------------", " Tampered ", " tarmacked ", " Teacup ", " tiebreakers ", " togging ", " tramps ", " tumbledown ", " Twisty ", " U ", " -------------------", " Ultraviolet ", " undulations ", " unmarked ", " Unplaced ", " unthinkinglY ", " UnvArNished ", " V ", " -------------------", " ValenciEs ", " Verrucas ", " Vigour " }
{"Ganged", "Kill", "gentrifying", "hurling", "Hardback", "Grammar", "glamorizes", "humAnises", "Kept", "Knelt", "kenning", "Headlocks", "Kilogrammes", "Geniuses", "grumble", "kale", "Godlessly", "grafts", "histrionic", "hotpots", "greedier", "gauged", "KnowIngly", "Gents", "kleptomaniacs", "Glibly", "herb", "knotTing", "HunchiNg", "HacklEs", "Kippers", "Husks", "Kipped", "heliotrope", "gaolers", "kingfisher", "keystroke", "Homosexuality", "Hallucinogen", "Grieve", "Guardedly", "goner", "Graceless", "hydrofoils", "KeyPUnches", "Genuflecting", "gymnastic", "KnIt", "goddaughter", "Governmental"}
Returns: {"G ", "------------------- ", " Ganged ", " gaolers ", " gauged ", " Geniuses ", " gentrifying ", " Gents ", " Genuflecting ", " glamorizes ", " Glibly ", " goddaughter ", " Godlessly ", " goner ", " Governmental ", " Graceless ", " grafts ", " Grammar ", " greedier ", " Grieve ", " grumble ", " Guardedly ", " gymnastic ", "H ", "------------------- ", " HacklEs ", " Hallucinogen ", " Hardback ", " Headlocks ", " heliotrope ", " herb ", " histrionic ", " Homosexuality ", " hotpots ", " humAnises ", " HunchiNg ", " hurling ", " Husks ", " hydrofoils ", "K ", "------------------- ", " kale ", " kenning ", " Kept ", " KeyPUnches ", " keystroke ", " Kill ", " Kilogrammes ", " kingfisher ", " Kipped ", " Kippers ", " kleptomaniacs ", " Knelt ", " KnIt ", " knotTing ", " KnowIngly " }
{"ImBroglios", "Inured", "achieVement", "interscholastic", "adverbial", "indifferent", "internally", "Immigrants", "Afflicted", "Improvement", "Deceiver", "Idioms", "Duplex", "InSults", "Deputises", "initialled", "Depredation", "Decanted", "artists", "disappoIntMent", "appositE", "Deportees", "annoyingLy", "anecdotes", "industrialist", "Demotic", "Distribution", "amputations", "depravity", "Dirtying", "deconstructEd", "Dogma", "Impregnated", "dumpling", "interrUPted", "Daffy", "Inhale", "Dictionaries", "Dossers", "Absences", "Deficit", "Aqueous", "Interspersed", "AcqUaint", "Identikits", "icily", "Awesomely", "autocross", "abstaining", "Adventures"}
Returns: {"A ", "------------------- ", " Absences ", " abstaining ", " achieVement ", " AcqUaint ", " Adventures ", " adverbial ", " Afflicted ", " amputations ", " anecdotes ", " annoyingLy ", " appositE ", " Aqueous ", " artists ", " autocross ", " Awesomely ", "D ", "------------------- ", " Daffy ", " Decanted ", " Deceiver ", " deconstructEd ", " Deficit ", " Demotic ", " Deportees ", " depravity ", " Depredation ", " Deputises ", " Dictionaries ", " Dirtying ", " disappoIntMent ", " Distribution ", " Dogma ", " Dossers ", " dumpling ", " Duplex ", "I ", "------------------- ", " icily ", " Identikits ", " Idioms ", " ImBroglios ", " Immigrants ", " Impregnated ", " Improvement ", " indifferent ", " industrialist ", " Inhale ", " initialled ", " InSults ", " internally ", " interrUPted ", " interscholastic ", " Interspersed ", " Inured " }
{"Mat", "Euphonious", "Beekeeping", "Flannels", "Choreographic", "Kitting", "Awake", "kissing", "muckier", "Deluding", "Bolshie", "bimbos", "Awesome", "lodgers", "equalized", "Miaowing", "JoggleS", "head", "Gladiola", "checkpoints", "absence", "ItaliciZing", "flextime", "anaesthetises", "motor", "involunTary", "condescends", "ArcaDe", "Encourages", "aware", "mar", "Martyring", "mudslides", "mendacious", "EnErgetically", "glassiest", "greases", "inaccurately", "Cession", "Heal", "BeTokening", "LitteriNg", "banana", "hijacks", "Marketeers", "DromedarieS", "flub", "cleaners", "Estimate", "geek"}
Returns: {"A ", "------------------- ", " absence ", " anaesthetises ", " ArcaDe ", " Awake ", " aware ", " Awesome ", "B ", "------------------- ", " banana ", " Beekeeping ", " BeTokening ", " bimbos ", " Bolshie ", "C ", "------------------- ", " Cession ", " checkpoints ", " Choreographic ", " cleaners ", " condescends ", "D ", "------------------- ", " Deluding ", " DromedarieS ", "E ", "------------------- ", " Encourages ", " EnErgetically ", " equalized ", " Estimate ", " Euphonious ", "F ", "------------------- ", " Flannels ", " flextime ", " flub ", "G ", "------------------- ", " geek ", " Gladiola ", " glassiest ", " greases ", "H ", "------------------- ", " head ", " Heal ", " hijacks ", "I ", "------------------- ", " inaccurately ", " involunTary ", " ItaliciZing ", "J ", "------------------- ", " JoggleS ", "K ", "------------------- ", " kissing ", " Kitting ", "L ", "------------------- ", " LitteriNg ", " lodgers ", "M ", "------------------- ", " mar ", " Marketeers ", " Martyring ", " Mat ", " mendacious ", " Miaowing ", " motor ", " muckier ", " mudslides " }
{"jumpier", "bursar", "BookIngs", "iNfusion", "brothel", "bougainvillea", "brIefest", "gaped", "gamblers", "jubilantly", "Jive", "jauntineSs", "goldfields", "fiancee", "jilts", "foresters", "Badness", "balmy", "GumbOot", "Bails", "Irrational", "ballyhoos", "bandies", "foregrounding", "graPefruIts", "IncrUstation", "Fulfilling", "GloBalization", "interbreeDs", "Foals", "jungles", "Glues", "FiGuring", "Glory", "Gumdrop", "journos", "FincHes", "impairment", "ferocity", "graIns", "behaving", "jubilation", "beSieGing", "Jazziest", "Jeweler", "gallants", "fatherlaNd", "Borehole", "jibbing", "Burnished"}
Returns: {"B ", "------------------- ", " Badness ", " Bails ", " ballyhoos ", " balmy ", " bandies ", " behaving ", " beSieGing ", " BookIngs ", " Borehole ", " bougainvillea ", " brIefest ", " brothel ", " Burnished ", " bursar ", "F ", "------------------- ", " fatherlaNd ", " ferocity ", " fiancee ", " FiGuring ", " FincHes ", " Foals ", " foregrounding ", " foresters ", " Fulfilling ", "G ", "------------------- ", " gallants ", " gamblers ", " gaped ", " GloBalization ", " Glory ", " Glues ", " goldfields ", " graIns ", " graPefruIts ", " GumbOot ", " Gumdrop ", "I ", "------------------- ", " impairment ", " IncrUstation ", " iNfusion ", " interbreeDs ", " Irrational ", "J ", "------------------- ", " jauntineSs ", " Jazziest ", " Jeweler ", " jibbing ", " jilts ", " Jive ", " journos ", " jubilantly ", " jubilation ", " jumpier ", " jungles " }
{"DelviNg", "Editorialized", "Infinitive", "Misconstruction", "guesthouse", "Implants", "muskrat", "geologists", "hornets", "industries", "Bricklayer", "Busked", "disarranged", "italicise", "Aired", "hemorrhage", "blether", "KinDles", "HIllocks", "collaboratively", "Humidity", "keener", "Keelhauls", "Kingfisher", "kIdney", "household", "entIced", "ExpatiAtes", "ideologies", "Coarsens", "keyed", "massive", "Eves", "aCcept", "gaiNer", "Glossiness", "Caked", "Bigamy", "mAndible", "auDiovisual", "islands", "aviaries", "Gondola", "inconsequentially", "accessibility", "drab", "knife", "cOg", "Handball", "capillaries"}
Returns: {"A ", "------------------- ", " aCcept ", " accessibility ", " Aired ", " auDiovisual ", " aviaries ", "B ", "------------------- ", " Bigamy ", " blether ", " Bricklayer ", " Busked ", "C ", "------------------- ", " Caked ", " capillaries ", " Coarsens ", " cOg ", " collaboratively ", "D ", "------------------- ", " DelviNg ", " disarranged ", " drab ", "E ", "------------------- ", " Editorialized ", " entIced ", " Eves ", " ExpatiAtes ", "G ", "------------------- ", " gaiNer ", " geologists ", " Glossiness ", " Gondola ", " guesthouse ", "H ", "------------------- ", " Handball ", " hemorrhage ", " HIllocks ", " hornets ", " household ", " Humidity ", "I ", "------------------- ", " ideologies ", " Implants ", " inconsequentially ", " industries ", " Infinitive ", " islands ", " italicise ", "K ", "------------------- ", " Keelhauls ", " keener ", " keyed ", " kIdney ", " KinDles ", " Kingfisher ", " knife ", "M ", "------------------- ", " mAndible ", " massive ", " Misconstruction ", " muskrat " }
{"guerriLla", "Intuit", "buffoons", "globalizing", "HelmeT", "Investigated", "ManioC", "haunch", "Initially", "lisped", "Comparable", "gazes", "Memorable", "LAboured", "Bone", "insiders", "JAilbirds", "Lettered", "grimaces", "jabber", "Knickknack", "Jots", "lemoNs", "identikits", "Bookmobiles", "Guppies", "Joshed", "Lacerated", "ConTrast", "jambs", "Jubilee", "kibbutzim", "catarrh", "kiRsch", "DrainboarDs", "kip", "Jaw", "Gritted", "InfatuatioNs", "hiding", "inhalations", "inaDequately", "Ghettoizes", "implausible", "job", "ImMigrates", "idol", "Jumble", "incremenTally", "Giro"}
Returns: {"B ", "------------------- ", " Bone ", " Bookmobiles ", " buffoons ", "C ", "------------------- ", " catarrh ", " Comparable ", " ConTrast ", "D ", "------------------- ", " DrainboarDs ", "G ", "------------------- ", " gazes ", " Ghettoizes ", " Giro ", " globalizing ", " grimaces ", " Gritted ", " guerriLla ", " Guppies ", "H ", "------------------- ", " haunch ", " HelmeT ", " hiding ", "I ", "------------------- ", " identikits ", " idol ", " ImMigrates ", " implausible ", " inaDequately ", " incremenTally ", " InfatuatioNs ", " inhalations ", " Initially ", " insiders ", " Intuit ", " Investigated ", "J ", "------------------- ", " jabber ", " JAilbirds ", " jambs ", " Jaw ", " job ", " Joshed ", " Jots ", " Jubilee ", " Jumble ", "K ", "------------------- ", " kibbutzim ", " kip ", " kiRsch ", " Knickknack ", "L ", "------------------- ", " LAboured ", " Lacerated ", " lemoNs ", " Lettered ", " lisped ", "M ", "------------------- ", " ManioC ", " Memorable " }
{"JackpoTs", "grimness", "gammy", "Impeachments", "Farmlands", "featured", "Hikes", "elaborating", "MinioN", "contributes", "Lessen", "dovecotes", "fobs", "Indeed", "Kimonos", "Apotheoses", "insolvencies", "Cool", "morn", "impassable", "Hang", "muzzle", "Manliest", "Emotionalism", "legalIstic", "homEwaRd", "decoder", "mileposts", "Kestrels", "Bosun", "formed", "fag", "Indoor", "birdie", "brownie", "Lasso", "adversaries", "HospiCes", "Intensities", "insolvAble", "Assassinations", "fell", "InstigaTes", "manacles", "Maker", "Keepers", "ComposEr", "Injected", "fascInatingly", "lane"}
Returns: {"A ", "------------------- ", " adversaries ", " Apotheoses ", " Assassinations ", "B ", "------------------- ", " birdie ", " Bosun ", " brownie ", "C ", "------------------- ", " ComposEr ", " contributes ", " Cool ", "D ", "------------------- ", " decoder ", " dovecotes ", "E ", "------------------- ", " elaborating ", " Emotionalism ", "F ", "------------------- ", " fag ", " Farmlands ", " fascInatingly ", " featured ", " fell ", " fobs ", " formed ", "G ", "------------------- ", " gammy ", " grimness ", "H ", "------------------- ", " Hang ", " Hikes ", " homEwaRd ", " HospiCes ", "I ", "------------------- ", " impassable ", " Impeachments ", " Indeed ", " Indoor ", " Injected ", " insolvAble ", " insolvencies ", " InstigaTes ", " Intensities ", "J ", "------------------- ", " JackpoTs ", "K ", "------------------- ", " Keepers ", " Kestrels ", " Kimonos ", "L ", "------------------- ", " lane ", " Lasso ", " legalIstic ", " Lessen ", "M ", "------------------- ", " Maker ", " manacles ", " Manliest ", " mileposts ", " MinioN ", " morn ", " muzzle " }
{"grows", "gizZArds", "BoOKstall", "Eavesdropping", "jumBling", "Multiculturalism", "allowed", "Inaccurate", "landmine", "Debugs", "FrienDships", "account", "Figure", "Minted", "Floe", "frogmarches", "intROducTion", "masticate", "jalOpy", "micros", "Legion", "Exiling", "GolDfiSh", "Leprechauns", "flanked", "consents", "endgames", "dOwnstage", "Deposits", "Miscarry", "broach", "Doughty", "external", "Drake", "inducing", "legacy", "Kinfolk", "IlluSionists", "Lash", "blubs", "INterchangeably", "larks", "Fertilisers", "IncapacitatinG", "Apparently", "Goner", "filaments", "lathers", "Huckleberry", "Legendary"}
Returns: {"A ", "------------------- ", " account ", " allowed ", " Apparently ", "B ", "------------------- ", " blubs ", " BoOKstall ", " broach ", "C ", "------------------- ", " consents ", "D ", "------------------- ", " Debugs ", " Deposits ", " Doughty ", " dOwnstage ", " Drake ", "E ", "------------------- ", " Eavesdropping ", " endgames ", " Exiling ", " external ", "F ", "------------------- ", " Fertilisers ", " Figure ", " filaments ", " flanked ", " Floe ", " FrienDships ", " frogmarches ", "G ", "------------------- ", " gizZArds ", " GolDfiSh ", " Goner ", " grows ", "H ", "------------------- ", " Huckleberry ", "I ", "------------------- ", " IlluSionists ", " Inaccurate ", " IncapacitatinG ", " inducing ", " INterchangeably ", " intROducTion ", "J ", "------------------- ", " jalOpy ", " jumBling ", "K ", "------------------- ", " Kinfolk ", "L ", "------------------- ", " landmine ", " larks ", " Lash ", " lathers ", " legacy ", " Legendary ", " Legion ", " Leprechauns ", "M ", "------------------- ", " masticate ", " micros ", " Minted ", " Miscarry ", " Multiculturalism " }
{"Thinker", "upstage", "Retain", "RecalcItrAnt", "unrelievedly", "temPo", "Receptor", "townhouse", "upswings", "TreaCle", "underground", "Upholder", "Recipes", "TenUred", "tapas", "RelIve", "telecasts", "Recoverable", "Refinements", "Underclassman", "twats", "trundle", "treasurers", "rattiEst", "Uncovering", "recantation", "Repatriated", "recce", "regress", "ReCons", "Recede", "Resplendent", "Ritzy", "Townspeople", "Terminals", "transferable", "Uncommon", "Undivided", "usherettes", "Urbanely", "redskins", "Up", "RecapitaLization", "refrigerates", "unearnEd", "trio", "Renovate", "Unscrupulous", "TonnageS", "Reforms"}
Returns: {" R ", " -------------------", " rattiEst ", " RecalcItrAnt ", " recantation ", " RecapitaLization ", " recce ", " Recede ", " Receptor ", " Recipes ", " ReCons ", " Recoverable ", " redskins ", " Refinements ", " Reforms ", " refrigerates ", " regress ", " RelIve ", " Renovate ", " Repatriated ", " Resplendent ", " Retain ", " Ritzy ", " T ", " -------------------", " tapas ", " telecasts ", " temPo ", " TenUred ", " Terminals ", " Thinker ", " TonnageS ", " townhouse ", " Townspeople ", " transferable ", " TreaCle ", " treasurers ", " trio ", " trundle ", " twats ", " U ", " -------------------", " Uncommon ", " Uncovering ", " Underclassman ", " underground ", " Undivided ", " unearnEd ", " unrelievedly ", " Unscrupulous ", " Up ", " Upholder ", " upstage ", " upswings ", " Urbanely ", " usherettes " }
{"yuppify", "vulture", "Victimizes", "tigresses", "rigor", "peephole", "teepees", "opportunists", "oversaw", "Yawn", "outshines", "talks", "Zones", "ratchets", "radicalized", "Vanishes", "Zodiacs", "Quotes", "Zither", "tanners", "Onside", "Respired", "yanking", "zodiac", "Togged", "penalising", "rings", "Unstated", "poisoned", "tourneys", "Renovations", "Young", "untAngles", "Quarts", "thereof", "Zithers", "oxygenating", "quasars", "Pitiably", "Versatility", "quaRterfinal", "preventative", "Zapper", "Warrants", "Wily", "Ordinations", "unexpecteD", "zydeco", "queasinEss", "preempted"}
Returns: {" O ", " -------------------", " Onside ", " opportunists ", " Ordinations ", " outshines ", " oversaw ", " oxygenating ", " P ", " -------------------", " peephole ", " penalising ", " Pitiably ", " poisoned ", " preempted ", " preventative ", " Q ", " -------------------", " quaRterfinal ", " Quarts ", " quasars ", " queasinEss ", " Quotes ", " R ", " -------------------", " radicalized ", " ratchets ", " Renovations ", " Respired ", " rigor ", " rings ", " T ", " -------------------", " talks ", " tanners ", " teepees ", " thereof ", " tigresses ", " Togged ", " tourneys ", " U ", " -------------------", " unexpecteD ", " Unstated ", " untAngles ", " V ", " -------------------", " Vanishes ", " Versatility ", " Victimizes ", " vulture ", " W ", " -------------------", " Warrants ", " Wily ", " Y ", " -------------------", " yanking ", " Yawn ", " Young ", " yuppify ", " Z ", " -------------------", " Zapper ", " Zither ", " Zithers ", " zodiac ", " Zodiacs ", " Zones ", " zydeco " }
{"yin", "yearlY", "necklacings", "overlap", "Spacious", "relied", "OffenD", "Vestment", "Pinhole", "Workstation", "Yodelling", "whirlybird", "pulsation", "wastes", "yids", "windbreaks", "standoff", "QuadrupliNg", "offload", "yodels", "ViBrating", "questioningly", "wreckers", "zApped", "Xenophobic", "noncomMittal", "repUtatiOns", "Vandalize", "ZeAl", "unpretentious", "Qua", "wAllop", "Quartering", "Yonks", "Zoological", "narcoleptic", "Niceness", "sword", "xenophobes", "understating", "nightclubs", "Rejiggering", "yellows", "UnidentifieD", "Oodles", "Yearbooks", "supernaturally", "xylophone", "reselling", "updates"}
Returns: {" N ", " -------------------", " narcoleptic ", " necklacings ", " Niceness ", " nightclubs ", " noncomMittal ", " O ", " -------------------", " OffenD ", " offload ", " Oodles ", " overlap ", " P ", " -------------------", " Pinhole ", " pulsation ", " Q ", " -------------------", " Qua ", " QuadrupliNg ", " Quartering ", " questioningly ", " R ", " -------------------", " Rejiggering ", " relied ", " repUtatiOns ", " reselling ", " S ", " -------------------", " Spacious ", " standoff ", " supernaturally ", " sword ", " U ", " -------------------", " understating ", " UnidentifieD ", " unpretentious ", " updates ", " V ", " -------------------", " Vandalize ", " Vestment ", " ViBrating ", " W ", " -------------------", " wAllop ", " wastes ", " whirlybird ", " windbreaks ", " Workstation ", " wreckers ", " X ", " -------------------", " xenophobes ", " Xenophobic ", " xylophone ", " Y ", " -------------------", " Yearbooks ", " yearlY ", " yellows ", " yids ", " yin ", " Yodelling ", " yodels ", " Yonks ", " Z ", " -------------------", " zApped ", " ZeAl ", " Zoological " }
{"waning", "ZoomIng", "Zine", "yelp", "Whiling", "Theorising", "warplanes", "Regulates", "Wedge", "Zealously", "workouts", "yammered", "ZoologisT", "Retails", "withers", "Yaks", "wanes", "tomfoolery", "roman", "ZiPping", "YOdeled", "tendentiously", "Youngest", "yardarm", "thanks", "recitative", "Zingers", "Yaps", "zonked", "Zillion", "workshop", "Wedges", "yogurts", "YelPing", "Youthful", "topmost", "yellows", "Reclaim", "Washcloth", "yodelled", "womenfolk", "thuggish", "yells", "warhorses", "Tinge", "Wrinkling", "yang", "tying", "zombie", "Radishes"}
Returns: {" R ", " -------------------", " Radishes ", " recitative ", " Reclaim ", " Regulates ", " Retails ", " roman ", " T ", " -------------------", " tendentiously ", " thanks ", " Theorising ", " thuggish ", " Tinge ", " tomfoolery ", " topmost ", " tying ", " W ", " -------------------", " wanes ", " waning ", " warhorses ", " warplanes ", " Washcloth ", " Wedge ", " Wedges ", " Whiling ", " withers ", " womenfolk ", " workouts ", " workshop ", " Wrinkling ", " Y ", " -------------------", " Yaks ", " yammered ", " yang ", " Yaps ", " yardarm ", " yellows ", " yells ", " yelp ", " YelPing ", " YOdeled ", " yodelled ", " yogurts ", " Youngest ", " Youthful ", " Z ", " -------------------", " Zealously ", " Zillion ", " Zine ", " Zingers ", " ZiPping ", " zombie ", " zonked ", " ZoologisT ", " ZoomIng " }
{"Wannabe", "Pellucid", "QuArtos", "Yid", "Yardstick", "Weave", "zenith", "Queenly", "ops", "solidified", "Obnoxious", "vehement", "scathing", "napped", "yahoo", "vanished", "Yanks", "weAken", "wheeziest", "northwards", "whitey", "zooms", "Vivaciously", "Zings", "wipes", "quarrelsomE", "ZucchInis", "Octopuses", "Queasiest", "verbosity", "thresh", "Obey", "Zinc", "pastrami", "Tasking", "Stride", "Scraping", "QuiTters", "Yellowhammers", "Tars", "Phials", "yoghurts", "Novelty", "Obstetric", "ZiNg", "volition", "yuccas", "phosphoric", "watErwheels", "Versions"}
Returns: {" N ", " -------------------", " napped ", " northwards ", " Novelty ", " O ", " -------------------", " Obey ", " Obnoxious ", " Obstetric ", " Octopuses ", " ops ", " P ", " -------------------", " pastrami ", " Pellucid ", " Phials ", " phosphoric ", " Q ", " -------------------", " quarrelsomE ", " QuArtos ", " Queasiest ", " Queenly ", " QuiTters ", " S ", " -------------------", " scathing ", " Scraping ", " solidified ", " Stride ", " T ", " -------------------", " Tars ", " Tasking ", " thresh ", " V ", " -------------------", " vanished ", " vehement ", " verbosity ", " Versions ", " Vivaciously ", " volition ", " W ", " -------------------", " Wannabe ", " watErwheels ", " weAken ", " Weave ", " wheeziest ", " whitey ", " wipes ", " Y ", " -------------------", " yahoo ", " Yanks ", " Yardstick ", " Yellowhammers ", " Yid ", " yoghurts ", " yuccas ", " Z ", " -------------------", " zenith ", " Zinc ", " ZiNg ", " Zings ", " zooms ", " ZucchInis " }
{"Xerox", "Parkway", "specimen", "Yetis", "unshaven", "posses", "Overlapped", "Stayer", "PhalangEs", "overestimatEs", "vandalised", "Yeti", "phoneys", "whirligig", "olive", "Overpaid", "Uncoiling", "wordiness", "weiRd", "overcompensating", "zydeco", "Wanting", "Wander", "Sags", "Seemlier", "woodenly", "where", "servings", "Yuppifies", "streetwalkers", "Yachtsman", "Recruiters", "proboScis", "yearns", "Visualises", "xeroxing", "sChmoozes", "whippets", "postponing", "veranda", "Yuk", "Zealousness", "Undermanned", "zodiacS", "VOlatile", "Wins", "ovErfly", "Predeterminer", "vilest", "xenon"}
Returns: {" O ", " -------------------", " olive ", " overcompensating ", " overestimatEs ", " ovErfly ", " Overlapped ", " Overpaid ", " P ", " -------------------", " Parkway ", " PhalangEs ", " phoneys ", " posses ", " postponing ", " Predeterminer ", " proboScis ", " R ", " -------------------", " Recruiters ", " S ", " -------------------", " Sags ", " sChmoozes ", " Seemlier ", " servings ", " specimen ", " Stayer ", " streetwalkers ", " U ", " -------------------", " Uncoiling ", " Undermanned ", " unshaven ", " V ", " -------------------", " vandalised ", " veranda ", " vilest ", " Visualises ", " VOlatile ", " W ", " -------------------", " Wander ", " Wanting ", " weiRd ", " where ", " whippets ", " whirligig ", " Wins ", " woodenly ", " wordiness ", " X ", " -------------------", " xenon ", " Xerox ", " xeroxing ", " Y ", " -------------------", " Yachtsman ", " yearns ", " Yeti ", " Yetis ", " Yuk ", " Yuppifies ", " Z ", " -------------------", " Zealousness ", " zodiacS ", " zydeco " }
{"enlivening", "Figurines", "impanels", "ChamPing", "chIrping", "excepting", "Quested", "questioning", "inequity", "Entertainment", "ContempoRaRy", "QuIet", "CRuiser", "In", "Flicks", "incriMination", "eRupting", "Feminists", "Cleric", "Facials", "Chart", "chessboards", "insertion", "quashed", "QuAshing", "identities", "cHarisma", "feedbag", "chiropractor", "Correspondences", "It", "Freethinking", "FalsehoOd", "calCUlable", "easily", "impassioned", "Quarterfinals", "impartial", "eNsemble", "Exhibitionism", "flaunted", "infO", "Query", "Indecision", "Fatigued", "Interrogators", "cyanidE", "Inference", "injudiciouS", "excavates"}
Returns: {"C Q ", "------------------- -------------------", " calCUlable Quarterfinals ", " ChamPing quashed ", " cHarisma QuAshing ", " Chart Query ", " chessboards Quested ", " chiropractor questioning ", " chIrping QuIet ", " Cleric ", " ContempoRaRy ", " Correspondences ", " CRuiser ", " cyanidE ", "E ", "------------------- ", " easily ", " enlivening ", " eNsemble ", " Entertainment ", " eRupting ", " excavates ", " excepting ", " Exhibitionism ", "F ", "------------------- ", " Facials ", " FalsehoOd ", " Fatigued ", " feedbag ", " Feminists ", " Figurines ", " flaunted ", " Flicks ", " Freethinking ", "I ", "------------------- ", " identities ", " impanels ", " impartial ", " impassioned ", " In ", " incriMination ", " Indecision ", " inequity ", " Inference ", " infO ", " injudiciouS ", " insertion ", " Interrogators ", " It " }
{"NineteeNs", "Nudge", "Vapid", "Artists", "VirgInity", "nasturtium", "demarcating", "van", "normalizes", "discount", "Hoards", "nurseries", "desirability", "DeNude", "distributional", "vents", "desErvedly", "Demigoddesses", "Hinges", "acuTe", "notify", "hydroplanes", "aRcheology", "veracity", "Hibernation", "alleyWay", "Heating", "Decanter", "Hybridizes", "hm", "HexinG", "aerie", "harmoNic", "viewed", "dreadlocks", "noggin", "nuttier", "nett", "domiciliarY", "vigorous", "dick", "nourish", "disMantle", "Detox", "noisiness", "Nosedive", "Habits", "Voracity", "adjourning", "debasing"}
Returns: {"A N ", "------------------- -------------------", " acuTe nasturtium ", " adjourning nett ", " aerie NineteeNs ", " alleyWay noggin ", " aRcheology noisiness ", " Artists normalizes ", "D Nosedive ", "------------------- notify ", " debasing nourish ", " Decanter Nudge ", " demarcating nurseries ", " Demigoddesses nuttier ", " DeNude V ", " desErvedly -------------------", " desirability van ", " Detox Vapid ", " dick vents ", " discount veracity ", " disMantle viewed ", " distributional vigorous ", " domiciliarY VirgInity ", " dreadlocks Voracity ", "H ", "------------------- ", " Habits ", " harmoNic ", " Heating ", " HexinG ", " Hibernation ", " Hinges ", " hm ", " Hoards ", " Hybridizes ", " hydroplanes " }
{"Debonair", "pucks", "Defiance", "patronagE", "Damned", "Pittance", "Desists", "Pejorative", "Egret", "palindromes", "Detainees", "PooEd", "extradite", "Defiantly", "Er", "Devotion", "Exhilarating", "epicUres", "peroration", "Director", "entities", "distanced", "dogie", "preps", "protocol", "Elevator", "Decoder", "downswinG", "DiagRammaticallY", "prattlers", "escapism", "Echoing", "EnCountering", "dispersed", "pelmet", "EjaculatioNs", "disavowaLs", "PlEaD", "Dockers", "directorships", "DispoSal", "EncoDing", "PUlveriseS", "Energises", "Erosion", "Debacles", "Pastrami", "Paleontology", "eyeglass", "draughtswoman"}
Returns: {"D P ", "------------------- -------------------", " Damned Paleontology ", " Debacles palindromes ", " Debonair Pastrami ", " Decoder patronagE ", " Defiance Pejorative ", " Defiantly pelmet ", " Desists peroration ", " Detainees Pittance ", " Devotion PlEaD ", " DiagRammaticallY PooEd ", " Director prattlers ", " directorships preps ", " disavowaLs protocol ", " dispersed pucks ", " DispoSal PUlveriseS ", " distanced ", " Dockers ", " dogie ", " downswinG ", " draughtswoman ", "E ", "------------------- ", " Echoing ", " Egret ", " EjaculatioNs ", " Elevator ", " EncoDing ", " EnCountering ", " Energises ", " entities ", " epicUres ", " Er ", " Erosion ", " escapism ", " Exhilarating ", " extradite ", " eyeglass " }
{"hankering", "Ha", "Helpmates", "baiting", "Wording", "beholden", "WorSted", "Wiener", "BlUsh", "haulers", "WoNderlands", "wrestlers", "hospitalizing", "Hisses", "bookies", "hazardous", "WaNLy", "womAnhood", "Bumpiest", "Humanised", "Hapless", "honeymooners", "Wracked", "booties", "HypErbole", "Barmiest", "huddleS", "harmonisinG", "wallflower", "homiest", "Windy", "busying", "barRed", "wends", "himself", "wise", "BUstier", "Witnessing", "homophones", "worktop", "HeLlishly", "hoedowns", "woodenness", "Wound", "Welsh", "Hydrates", "While", "Haggles", "HaMpered", "weaklings"}
Returns: {"B W ", "------------------- -------------------", " baiting wallflower ", " Barmiest WaNLy ", " barRed weaklings ", " beholden Welsh ", " BlUsh wends ", " bookies While ", " booties Wiener ", " Bumpiest Windy ", " BUstier wise ", " busying Witnessing ", "H womAnhood ", "------------------- WoNderlands ", " Ha woodenness ", " Haggles Wording ", " HaMpered worktop ", " hankering WorSted ", " Hapless Wound ", " harmonisinG Wracked ", " haulers wrestlers ", " hazardous ", " HeLlishly ", " Helpmates ", " himself ", " Hisses ", " hoedowns ", " homiest ", " homophones ", " honeymooners ", " hospitalizing ", " huddleS ", " Humanised ", " Hydrates ", " HypErbole " }
{"lowly", "Scrutinizing", "Kilos", "Posteriors", "Kilobytes", "lameness", "SchooLmasteRs", "PreScribed", "Inhabit", "levelling", "KaleidoscopiCally", "protestation", "Lousing", "InvigilaTion", "Lax", "perforce", "pointillist", "imputed", "lOcalized", "investigator", "Kipper", "SLoping", "klutz", "Pooch", "Prefigures", "porn", "seedier", "Kiddy", "passably", "Intellectualised", "know", "Swimmingly", "Idealizes", "Lease", "KIndle", "Lastly", "Idiosyncrasies", "kitting", "symbolisEd", "Spiritless", "leafier", "keyboardists", "Stomached", "knittinG", "SnakiNg", "Slimiest", "sox", "stirrer", "Livid", "initialing"}
Returns: {"I P ", "------------------- -------------------", " Idealizes passably ", " Idiosyncrasies perforce ", " imputed pointillist ", " Inhabit Pooch ", " initialing porn ", " Intellectualised Posteriors ", " investigator Prefigures ", " InvigilaTion PreScribed ", "K protestation ", "------------------- S ", " KaleidoscopiCally -------------------", " keyboardists SchooLmasteRs ", " Kiddy Scrutinizing ", " Kilobytes seedier ", " Kilos Slimiest ", " KIndle SLoping ", " Kipper SnakiNg ", " kitting sox ", " klutz Spiritless ", " knittinG stirrer ", " know Stomached ", "L Swimmingly ", "------------------- symbolisEd ", " lameness ", " Lastly ", " Lax ", " leafier ", " Lease ", " levelling ", " Livid ", " lOcalized ", " Lousing ", " lowly " }
{"enlivening", "Figurines", "impanels", "ChamPing", "chIrping", "excepting", "Quested", "questioning", "inequity", "Entertainment", "ContempoRaRy", "QuIet", "CRuiser", "In", "Flicks", "incriMination", "eRupting", "Feminists", "Cleric", "Facials", "Chart", "chessboards", "insertion", "quashed", "QuAshing", "identities", "cHarisma", "feedbag", "chiropractor", "Correspondences", "It", "Freethinking", "FalsehoOd", "calCUlable", "easily", "impassioned", "Quarterfinals", "impartial", "eNsemble", "Exhibitionism", "flaunted", "infO", "Query", "Indecision", "Fatigued", "Interrogators", "cyanidE", "Inference", "injudiciouS", "excavates"}
Returns: {"C Q ", "------------------- -------------------", " calCUlable Quarterfinals ", " ChamPing quashed ", " cHarisma QuAshing ", " Chart Query ", " chessboards Quested ", " chiropractor questioning ", " chIrping QuIet ", " Cleric ", " ContempoRaRy ", " Correspondences ", " CRuiser ", " cyanidE ", "E ", "------------------- ", " easily ", " enlivening ", " eNsemble ", " Entertainment ", " eRupting ", " excavates ", " excepting ", " Exhibitionism ", "F ", "------------------- ", " Facials ", " FalsehoOd ", " Fatigued ", " feedbag ", " Feminists ", " Figurines ", " flaunted ", " Flicks ", " Freethinking ", "I ", "------------------- ", " identities ", " impanels ", " impartial ", " impassioned ", " In ", " incriMination ", " Indecision ", " inequity ", " Inference ", " infO ", " injudiciouS ", " insertion ", " Interrogators ", " It " }
{"NineteeNs", "Nudge", "Vapid", "Artists", "VirgInity", "nasturtium", "demarcating", "van", "normalizes", "discount", "Hoards", "nurseries", "desirability", "DeNude", "distributional", "vents", "desErvedly", "Demigoddesses", "Hinges", "acuTe", "notify", "hydroplanes", "aRcheology", "veracity", "Hibernation", "alleyWay", "Heating", "Decanter", "Hybridizes", "hm", "HexinG", "aerie", "harmoNic", "viewed", "dreadlocks", "noggin", "nuttier", "nett", "domiciliarY", "vigorous", "duck", "nourish", "disMantle", "Detox", "noisiness", "Nosedive", "Habits", "Voracity", "adjourning", "debasing"}
Returns: {"A N ", "------------------- -------------------", " acuTe nasturtium ", " adjourning nett ", " aerie NineteeNs ", " alleyWay noggin ", " aRcheology noisiness ", " Artists normalizes ", "D Nosedive ", "------------------- notify ", " debasing nourish ", " Decanter Nudge ", " demarcating nurseries ", " Demigoddesses nuttier ", " DeNude V ", " desErvedly -------------------", " desirability van ", " Detox Vapid ", " discount vents ", " disMantle veracity ", " distributional viewed ", " domiciliarY vigorous ", " dreadlocks VirgInity ", " duck Voracity ", "H ", "------------------- ", " Habits ", " harmoNic ", " Heating ", " HexinG ", " Hibernation ", " Hinges ", " hm ", " Hoards ", " Hybridizes ", " hydroplanes " }
{"monopolised", "idle", "UNreserved", "pancreases", "hikers", "whistleD", "messed", "yellowy", "Galumphing", "Wide", "Missive", "Facing", "moorland", "fAnLights", "Wondered", "inhErits", "underwhelmEd", "Wordy", "Revolutionised", "unTItled", "yak", "fabrics", "Militiamen", "ReassemBling", "We", "Revelling", "unwary", "HeadliNe", "roasts", "Graphologist", "Intimates", "Grandpas", "Remonstrating", "roWing", "itemises", "yearbook", "Misapplying", "hippies", "Interpolate", "Youngest", "Whipped", "repented", "modelers", "Hums", "unnatural", "Widest", "patience", "whitebait", "Insets", "Permanent"}
Returns: {"F P ", "------------------- -------------------", " fabrics pancreases ", " Facing patience ", " fAnLights Permanent ", "G R ", "------------------- -------------------", " Galumphing ReassemBling ", " Grandpas Remonstrating ", " Graphologist repented ", "H Revelling ", "------------------- Revolutionised ", " HeadliNe roasts ", " hikers roWing ", " hippies U ", " Hums -------------------", "I underwhelmEd ", "------------------- unnatural ", " idle UNreserved ", " inhErits unTItled ", " Insets unwary ", " Interpolate W ", " Intimates -------------------", " itemises We ", "M Whipped ", "------------------- whistleD ", " messed whitebait ", " Militiamen Wide ", " Misapplying Widest ", " Missive Wondered ", " modelers Wordy ", " monopolised Y ", " moorland -------------------", " yak ", " yearbook ", " yellowy ", " Youngest " }
{"melted", "suntan", "potency", "Pettifogging", "spatially", "wonky", "WalkwAys", "Locums", "virology", "quaffing", "LIft", "fallacy", "Lull", "yodel", "Zodiac", "GIantess", "quadruple", "flimsier", "Telecommuting", "violins", "KiLometer", "knucKleduster", "solEmnising", "Zookeeper", "Going", "SoundeR", "Gores", "TunefuLness", "wicked", "tartness", "Yams", "zithers", "lugging", "guides", "surmounting", "Gardeners", "sweetened", "Piously", "Majestic", "yak", "flashers", "verbosity", "sloes", "forebears", "void", "surmounted", "Grocery", "Signalmen", "Versatile", "yearnings"}
Returns: {"F P ", "------------------- -------------------", " fallacy Pettifogging ", " flashers Piously ", " flimsier potency ", " forebears Q ", "G -------------------", "------------------- quadruple ", " Gardeners quaffing ", " GIantess S ", " Going -------------------", " Gores Signalmen ", " Grocery sloes ", " guides solEmnising ", "K SoundeR ", "------------------- spatially ", " KiLometer suntan ", " knucKleduster surmounted ", "L surmounting ", "------------------- sweetened ", " LIft T ", " Locums -------------------", " lugging tartness ", " Lull Telecommuting ", "M TunefuLness ", "------------------- V ", " Majestic -------------------", " melted verbosity ", " Versatile ", " violins ", " virology ", " void ", " W ", " -------------------", " WalkwAys ", " wicked ", " wonky ", " Y ", " -------------------", " yak ", " Yams ", " yearnings ", " yodel ", " Z ", " -------------------", " zithers ", " Zodiac ", " Zookeeper " }
{"intoxicAted", "boa", "ventured", "johns", "johnny", "Intend", "VIctimization", "Loans", "ideology", "Zonked", "Garcons", "Grousing", "Vacancies", "vindictively", "Bowers", "PloUgHs", "lumbers", "Bursars", "Jeopardized", "jaywalker", "Intellect", "Bronco", "yaks", "Bewigged", "voracious", "Vertebrae", "goblin", "fannies", "zodiacal", "INsatiaBly", "jocksTrap", "zeal", "Ladyship", "Jogs", "dicker", "workAday", "louvre", "ethnocentrism", "Vindicating", "Versed", "Indistinguishable", "enCapsulated", "desists", "zoning", "wells", "Zoom", "plangEnt", "Fruited", "Vied", "disassociates"}
Returns: {"B P ", "------------------- -------------------", " Bewigged plangEnt ", " boa PloUgHs ", " Bowers V ", " Bronco -------------------", " Bursars Vacancies ", "D ventured ", "------------------- Versed ", " desists Vertebrae ", " dicker VIctimization ", " disassociates Vied ", "E Vindicating ", "------------------- vindictively ", " enCapsulated voracious ", " ethnocentrism W ", "F -------------------", "------------------- wells ", " fannies workAday ", " Fruited Y ", "G -------------------", "------------------- yaks ", " Garcons Z ", " goblin -------------------", " Grousing zeal ", "I zodiacal ", "------------------- zoning ", " ideology Zonked ", " Indistinguishable Zoom ", " INsatiaBly ", " Intellect ", " Intend ", " intoxicAted ", "J ", "------------------- ", " jaywalker ", " Jeopardized ", " jocksTrap ", " Jogs ", " johnny ", " johns ", "L ", "------------------- ", " Ladyship ", " Loans ", " louvre ", " lumbers " }
{"Asteria", "Astraeus", "Atlas", "Clymene", "Coeus", "Crius", "Cronus", "Dione", "Epimetheus", "Helios", "Hyperion", "Iapetus", "Leto", "Mnemosyne", "Oceanus", "Ophion", "Phoebe", "Prometheus", "Rhea", "Tethys", "Theia", "Themis" }
Returns: {"A O ", "------------------- -------------------", " Asteria Oceanus ", " Astraeus Ophion ", " Atlas P ", "C -------------------", "------------------- Phoebe ", " Clymene Prometheus ", " Coeus R ", " Crius -------------------", " Cronus Rhea ", "D T ", "------------------- -------------------", " Dione Tethys ", "E Theia ", "------------------- Themis ", " Epimetheus ", "H ", "------------------- ", " Helios ", " Hyperion ", "I ", "------------------- ", " Iapetus ", "L ", "------------------- ", " Leto ", "M ", "------------------- ", " Mnemosyne " }
{"XXXXXXXXXXXXXXXXX", "YYYYYYYYYYYYYYYYY", "ZZZZZZZZZZZZZZZZZ" }
Returns: {" X ", " -------------------", " XXXXXXXXXXXXXXXXX", " Y ", " -------------------", " YYYYYYYYYYYYYYYYY", " Z ", " -------------------", " ZZZZZZZZZZZZZZZZZ" }
{"AVL tree", "backtracking", "array", "balanced tree", "binary search", "Asff" }
Returns: {"A ", "------------------- ", " array ", " Asff ", " AVL tree ", "B ", "------------------- ", " backtracking ", " balanced tree ", " binary search " }
{"alpha", "beta", "gamma", "delta", "omega" }
Returns: {"A O ", "------------------- -------------------", " alpha omega ", "B ", "------------------- ", " beta ", "D ", "------------------- ", " delta ", "G ", "------------------- ", " gamma " }
{"Ab", "aa" }
Returns: {"A ", "------------------- ", " aa ", " Ab " }
{"AVL tree", "backtracking", "array", "balanced tree", "binary search", "Chare" }
Returns: {"A ", "------------------- ", " array ", " AVL tree ", "B ", "------------------- ", " backtracking ", " balanced tree ", " binary search ", "C ", "------------------- ", " Chare " }
{"ABD", "abc" }
Returns: {"A ", "------------------- ", " abc ", " ABD " }
{"a", "AA", "aaaaa", "aaa", "zz", "z", "zzz", "zzzz", "zzzzzz", "bbbbbb", "BBB" }
Returns: {"A Z ", "------------------- -------------------", " a z ", " AA zz ", " aaa zzz ", " aaaaa zzzz ", "B zzzzzz ", "------------------- ", " BBB ", " bbbbbb " }
{"NG" }
Returns: {" N ", " -------------------", " NG " }
{"adsdsfv", "asdfla", "aaaaaaaaaa", "AAAAAAAAA", "aaaaaW" }
Returns: {"A ", "------------------- ", " AAAAAAAAA ", " aaaaaaaaaa ", " aaaaaW ", " adsdsfv ", " asdfla " }
{"AAA", "aaab" }
Returns: {"A ", "------------------- ", " AAA ", " aaab " }
{"united states", "united kingdom" }
Returns: {" U ", " -------------------", " united kingdom ", " united states " }
{"n", "Nn", "zZ", "ZzZ" }
Returns: {" N ", " -------------------", " n ", " Nn ", " Z ", " -------------------", " zZ ", " ZzZ " }
{"aRz", "array", "baba", "bbb", "bac" }
Returns: {"A ", "------------------- ", " array ", " aRz ", "B ", "------------------- ", " baba ", " bac ", " bbb " }
{"Aa", "AB", "aZ", "ay", "Aw", "ac", "aD" }
Returns: {"A ", "------------------- ", " Aa ", " AB ", " ac ", " aD ", " Aw ", " ay ", " aZ " }
{"Abug", "A Bug" }
Returns: {"A ", "------------------- ", " A Bug ", " Abug " }
{"ab", "Aa" }
Returns: {"A ", "------------------- ", " Aa ", " ab " }
{"aaaaaaa", "AAaAA", "qqqq" }
Returns: {"A Q ", "------------------- -------------------", " AAaAA qqqq ", " aaaaaaa " }
{"AVL tree", "backtracking", "array", "balanced tree", "binary search" }
Returns: {"A ", "------------------- ", " array ", " AVL tree ", "B ", "------------------- ", " backtracking ", " balanced tree ", " binary search " }
{"Ask", "ast", "Bst", "bsk" }
Returns: {"A ", "------------------- ", " Ask ", " ast ", "B ", "------------------- ", " bsk ", " Bst " }
{"HgUeyNFXICSxgWfQU", "WNOVrKPEGxPRYtwyy", "cpvkfMNmksWrnKcFT", "SySAPofZCeUPAOgOy", "FBPJRIYmeWnrpxjLo", "AwxhsCXosZvtDnYYF", "xSnkfUXRBngoktYNo", "uzrdItijayPSmSjFG", "bAoLYNRdpsTsWDzoZ", "nWQjVWXRbDGlgUbbr", "THspOGgKuDOObxEaF", "tueZhlUgejQJnEQxe", "JrZAULCHFmiwOIyXU", "nSsSTkqCzEuMrczjp", "IneDSRAYmABZseuNP", "SabzxhcHErUKMPWqG", "OAMwDyxtBHwYCRBPO", "hKquRzNNUQQlZPIgL", "eDUOrrsOBZwPwjlfA", "mIpPuGPnWMaXnnHQr", "ULFOCTZUldmCOkFjR", "xtOkJWclFIpyCZIkA", "XGCCyJgxtVRhBpIBV", "BgcQkoZkbjMSTsFOf", "sRJGzuZwiuPxqLUvo", "wcdNfJAmcFkiUUIwB", "EukbCKZzOdkhZfzZF", "qPzkOUdTXJkERPxme", "OwtPPcIKlYIRqyNfN", "VzdyNydUMHektWsOG", "FzvQXwmXYgdazgvoK", "GCmMRhyYgjkkZAxko", "zmuZzphtyZvuprMIg", "krzXHOmAYAXvhQIES", "gHJUXmsNrekgCvHJB", "TqJoGKFFcfewrwpSm", "tgppNJuAYnknvlScW", "AgMKiDOKMQipohmFU", "WvjflKDhjfTKfryFN", "HscYTadjPHNgixcWG", "SeertJjAijWYNRiOw", "iYtdAwhgwMGnLJGuN", "hEgFkStJAfzalRhCd", "rVRvyefvRyuQRdkbF", "uRqlbwxzasGhmGNpN", "kmUKRFcVrKlAlToOo", "XQjGnNZaxAdWdZFsw", "TOVnHsCnunDFMZatC", "kAyZxTbGnvPGjgMxb", "CYCqhDZrBMrXOThGn" }
Returns: {"A N ", "------------------- -------------------", " AgMKiDOKMQipohmFU nSsSTkqCzEuMrczjp", " AwxhsCXosZvtDnYYF nWQjVWXRbDGlgUbbr", "B O ", "------------------- -------------------", " bAoLYNRdpsTsWDzoZ OAMwDyxtBHwYCRBPO", " BgcQkoZkbjMSTsFOf OwtPPcIKlYIRqyNfN", "C Q ", "------------------- -------------------", " cpvkfMNmksWrnKcFT qPzkOUdTXJkERPxme", " CYCqhDZrBMrXOThGn R ", "E -------------------", "------------------- rVRvyefvRyuQRdkbF", " eDUOrrsOBZwPwjlfA S ", " EukbCKZzOdkhZfzZF -------------------", "F SabzxhcHErUKMPWqG", "------------------- SeertJjAijWYNRiOw", " FBPJRIYmeWnrpxjLo sRJGzuZwiuPxqLUvo", " FzvQXwmXYgdazgvoK SySAPofZCeUPAOgOy", "G T ", "------------------- -------------------", " GCmMRhyYgjkkZAxko tgppNJuAYnknvlScW", " gHJUXmsNrekgCvHJB THspOGgKuDOObxEaF", "H TOVnHsCnunDFMZatC", "------------------- TqJoGKFFcfewrwpSm", " hEgFkStJAfzalRhCd tueZhlUgejQJnEQxe", " HgUeyNFXICSxgWfQU U ", " hKquRzNNUQQlZPIgL -------------------", " HscYTadjPHNgixcWG ULFOCTZUldmCOkFjR", "I uRqlbwxzasGhmGNpN", "------------------- uzrdItijayPSmSjFG", " IneDSRAYmABZseuNP V ", " iYtdAwhgwMGnLJGuN -------------------", "J VzdyNydUMHektWsOG", "------------------- W ", " JrZAULCHFmiwOIyXU -------------------", "K wcdNfJAmcFkiUUIwB", "------------------- WNOVrKPEGxPRYtwyy", " kAyZxTbGnvPGjgMxb WvjflKDhjfTKfryFN", " kmUKRFcVrKlAlToOo X ", " krzXHOmAYAXvhQIES -------------------", "M XGCCyJgxtVRhBpIBV", "------------------- XQjGnNZaxAdWdZFsw", " mIpPuGPnWMaXnnHQr xSnkfUXRBngoktYNo", " xtOkJWclFIpyCZIkA", " Z ", " -------------------", " zmuZzphtyZvuprMIg" }
{"Canada", "France", "Germany", "Italy", "Japan", "Russia", "United Kingdom", "United States" }
Returns: {"C R ", "------------------- -------------------", " Canada Russia ", "F U ", "------------------- -------------------", " France United Kingdom ", "G United States ", "------------------- ", " Germany ", "I ", "------------------- ", " Italy ", "J ", "------------------- ", " Japan " }
{"albania", "polonia", "nueva york", "ucrania", "irlanda", "portugal" }
Returns: {"A N ", "------------------- -------------------", " albania nueva york ", "I P ", "------------------- -------------------", " irlanda polonia ", " portugal ", " U ", " -------------------", " ucrania " }
{"AVL tree", "backtracking", "array", "balanced tree", "binary search", "abcdefg" }
Returns: {"A ", "------------------- ", " abcdefg ", " array ", " AVL tree ", "B ", "------------------- ", " backtracking ", " balanced tree ", " binary search " }
{"Ab", "ABb", "Aa", "AAa", "Ac", "ACc", "Ad", "ADd" }
Returns: {"A ", "------------------- ", " Aa ", " AAa ", " Ab ", " ABb ", " Ac ", " ACc ", " Ad ", " ADd " }
{"aaaaaaa", "AAaAA", "qqqq", "aa" }
Returns: {"A Q ", "------------------- -------------------", " aa qqqq ", " AAaAA ", " aaaaaaa " }
{"aa", "aAa" }
Returns: {"A ", "------------------- ", " aa ", " aAa " }
{"albania", "polonia", "nueva york", "ucrania", "irlanda", "portugal", "madagascar", "uruguay" }
Returns: {"A N ", "------------------- -------------------", " albania nueva york ", "I P ", "------------------- -------------------", " irlanda polonia ", "M portugal ", "------------------- U ", " madagascar -------------------", " ucrania ", " uruguay " }
{"Cat", "CBD" }
Returns: {"C ", "------------------- ", " Cat ", " CBD " }
{"adc", "aBf", "abc" }
Returns: {"A ", "------------------- ", " abc ", " aBf ", " adc " }
{"aA", "AAAAAAAAA", "abbbbbbbb", "aaaabbbbb", "bbbaaaaaa", "abbbbb" }
Returns: {"A ", "------------------- ", " aA ", " AAAAAAAAA ", " aaaabbbbb ", " abbbbb ", " abbbbbbbb ", "B ", "------------------- ", " bbbaaaaaa " }
{"Abb" }
Returns: {"A ", "------------------- ", " Abb " }
{"albania", "polonia", "nueva york", "ucrania", "irlanda", "portugal", "madagascar", "uruguay", "brasil", "yucatan" }
Returns: {"A N ", "------------------- -------------------", " albania nueva york ", "B P ", "------------------- -------------------", " brasil polonia ", "I portugal ", "------------------- U ", " irlanda -------------------", "M ucrania ", "------------------- uruguay ", " madagascar Y ", " -------------------", " yucatan " }
{"abb", "ABC" }
Returns: {"A ", "------------------- ", " abb ", " ABC " }
{"Nevada" }
Returns: {" N ", " -------------------", " Nevada " }
{"aBAa", "aabb", "accc" }
Returns: {"A ", "------------------- ", " aabb ", " aBAa ", " accc " }
{"aaaaaaa", "aaaaa", "aaa", "aa", "aaaa", "aaaaaa", "aaaaaaaa", "a" }
Returns: {"A ", "------------------- ", " a ", " aa ", " aaa ", " aaaa ", " aaaaa ", " aaaaaa ", " aaaaaaa ", " aaaaaaaa " }
{"aa", "aB", "ac", "aD" }
Returns: {"A ", "------------------- ", " aa ", " aB ", " ac ", " aD " }
{"A ", "a" }
Returns: {"A ", "------------------- ", " a ", " A " }
{"asdadsadas", "ewrwrewr", "reterte", "ertetrete", "yyyoyoyppyp", "tttttttttttttt", "ttttttttttttttytr", "mmmmmmmmmm", "MMMMMMM", "NNNNNNNN", "TTTTTTTTTTT", "oopopop", "tryrtyr", "ytrytrytry", "nvbnvnbvnvvb", "p" }
Returns: {"A N ", "------------------- -------------------", " asdadsadas NNNNNNNN ", "E nvbnvnbvnvvb ", "------------------- O ", " ertetrete -------------------", " ewrwrewr oopopop ", "M P ", "------------------- -------------------", " MMMMMMM p ", " mmmmmmmmmm R ", " -------------------", " reterte ", " T ", " -------------------", " tryrtyr ", " TTTTTTTTTTT ", " tttttttttttttt ", " ttttttttttttttytr", " Y ", " -------------------", " ytrytrytry ", " yyyoyoyppyp " }
{"alpha", "beta", "gamma", "delta", "omega", "alpHaa", "gaMs", "Deltas", "beTs", "bEha" }
Returns: {"A O ", "------------------- -------------------", " alpha omega ", " alpHaa ", "B ", "------------------- ", " bEha ", " beta ", " beTs ", "D ", "------------------- ", " delta ", " Deltas ", "G ", "------------------- ", " gamma ", " gaMs " }
{"KGTU", "Student", "Sucker", "suup", "Zed", "is dead", "i must do that", "i am", "i Am coder", "Krasnoaarsk", "Moscow", "MoScoww", "abs", "gha", "dasdasfqa", "dddafa", "asdafa", "ADAF", "I hate you", "exams", "somebody ", "nobody", "nobodies", "Nobodi", "nobode", "nasdfeE", "fdsag", "fffadsa", "tobeornotbe", "toppcoder", "tomek", "Petr", "tomekkluczincki", "asfasfagasga", "asfagarfgagd", "asfasfaga", "asdsafafafsaga", "hfaagha", "adafgajgkakjaga", "bvbklfkaskashk", "asfasfasg", "basdasfa", "aaafasfa" }
Returns: {"A N ", "------------------- -------------------", " aaafasfa nasdfeE ", " abs nobode ", " ADAF Nobodi ", " adafgajgkakjaga nobodies ", " asdafa nobody ", " asdsafafafsaga P ", " asfagarfgagd -------------------", " asfasfaga Petr ", " asfasfagasga S ", " asfasfasg -------------------", "B somebody ", "------------------- Student ", " basdasfa Sucker ", " bvbklfkaskashk suup ", "D T ", "------------------- -------------------", " dasdasfqa tobeornotbe ", " dddafa tomek ", "E tomekkluczincki ", "------------------- toppcoder ", " exams Z ", "F -------------------", "------------------- Zed ", " fdsag ", " fffadsa ", "G ", "------------------- ", " gha ", "H ", "------------------- ", " hfaagha ", "I ", "------------------- ", " i am ", " i Am coder ", " I hate you ", " i must do that ", " is dead ", "K ", "------------------- ", " KGTU ", " Krasnoaarsk ", "M ", "------------------- ", " Moscow ", " MoScoww " }
{"aa", "aAA", "aaaa" }
Returns: {"A ", "------------------- ", " aa ", " aAA ", " aaaa " }
{"AbBD", "AcBC" }
Returns: {"A ", "------------------- ", " AbBD ", " AcBC " }