Page 10 of 12 FirstFirst ... 89101112 LastLast
Results 91 to 100 of 119

Thread: The Mxied-Up Ltteres Gmae

  1. #91
    Join Date
    Oct 2007
    Location
    Earth
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: The Mxied-Up Ltteres Gmae

    The Mxied-Up Ltteres Gmae

  2. #92
    Join Date
    Oct 2007
    Location
    Earth
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: The Mxied-Up Ltteres Gmae

    bmup my qeutsoin bloew:

    Quote Originally Posted by Th3Professor View Post
    lol

    wlel, wdors taht hvae olny 1, 2, or 3 ltertes arne't mxied up.

    Can smoeone taht knwos phyotn uatpde tihs sirpct so taht it d'osent lveae any wdros "unuemixd" or at lsaet kepes the fsirt and lsat leertts of ecah
    wrod in tiehr onrigail ltoaicons (rmianeing as the fsirt and lsat lterets atfer mxiing up the ohetr letetrs)?

    hree it is:

    Code:
    #!/usr/bin/python
    # -*- coding: utf-8 -*-
    
    import random
    
    def Mixup(word):
        if len(word) < 4:
            return word
        chars = [None] * (len(word) - 2)
        positions = range(len(word) - 2)
        for char in word[1:-1]:
            pos = random.choice(positions)
            chars[pos] = char
            positions.remove(pos)
        return word[0] + "".join(chars) + word[-1]
    
    try:
        while True:
            print " ".join([Mixup(word) for word in raw_input().split()])
    except (EOFError, KeyboardInterrupt):
        pass

  3. #93
    Join Date
    Oct 2007
    Location
    Earth
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: The Mxied-Up Ltteres Gmae


  4. #94

    Re: The Mxied-Up Ltteres Gmae

    Hlelo!

  5. #95

    Re: The Mxied-Up Ltteres Gmae

    bmup

  6. #96
    Join Date
    Mar 2009
    Beans
    120
    Distro
    Ubuntu Development Release

    Re: The Mxied-Up Ltteres Gmae

    waht is tihs a bmup terhad? selpl cehck is gonig cazry.

  7. #97
    Join Date
    Sep 2007
    Location
    $HOME="Nowhere"
    Beans
    216
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: The Mxied-Up Ltteres Gmae

    I adme na ixm ordws C pogarm:
    Code:
    /* This guy mixes up words :-) */
    /* Usage: mixupwords "words you like to mix up" */
    #include <string.h>
    #include <unistd.h>
    
    int main(int argc, char *argv[1])
    {
     if (argc < 2 || argc > 2) return;
     char *string = argv[1];
     /* Randomize the random number */
     srand(time(NULL) + getpid() + strlen(argv[1]));
     strfry(string);
     printf("%s\n", string);
     return 0;
    }
    *LFS USER #20429*
    My SLAX.org Profile
    *USER OF GENTOO!*

  8. #98
    Join Date
    Oct 2007
    Location
    Earth
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: The Mxied-Up Ltteres Gmae

    Quote Originally Posted by Th3Professor View Post
    Hree is the olny rael "rlue" for tihs exlcleent gmae:
    Rpely wtih any msesgae taht you lkie, thgouh wehn you are fniihsed wtih the msaesge keep the frist and lsat ltteers of ecah wrod in tiehr orgiianl loactoin and rerraagne all ltetres insdie ecah wrod. (Theer's no need to scrmalbe wrdos taht olny hvae two or trhee leettrs in tehm.)

    Here is the only real "rule" for this excellent game:
    Reply with any message that you like, though when you are finished with the message keep the first and last letters of each word in their original location and rearrange all letters inside each word. (There's no need scramble to words that only have two or three letters in them.)


    Oaky, tish is itnreesntig. Tmie to gvie tihs trhaed a ncero-bmup.

  9. #99
    Join Date
    Jan 2012
    Beans
    1

    Re: The Mxied-Up Ltteres Gmae

    UUbtun is aewosem, sin't it?

  10. #100
    Join Date
    Mar 2010
    Location
    Isn't it obvious?
    Beans
    432

    Re: The Mxied-Up Ltteres Gmae

    hrAc si rwhee si't ta, MOI.
    AMD Athlon II x4 640 - ASUS M4A88T-V EVO/USB3 - 12GB RAM - XFX ATI Radeon HD 5670 1GB w/21.5" Monitor - Assorted HDDs - Mushkin Enhanced Chronos 120Gb SSD - [ArchLinux - Windows 7 - Mac OS X 10.6.8]
    If all else fails, read the instructions.

Page 10 of 12 FirstFirst ... 89101112 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •