Results 1 to 12 of 12

Thread: Can you figure out this pattern?

Hybrid View

  1. #1

    Thread Starter
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Can you figure out this pattern?

    Code:
    1
    11
    21
    1211
    111221
    312211
    ...
    After much fiddling, I finally got a program written that accurately figures it out... I personally love it. It's a very simple pattern to grasp from a conceptual standpoint, but the actual math for it is pretty maddening.. hence why I didn't even use any math in the app...

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Can you figure out this pattern?

    hmmm... I believe that's the mathematical representation of the Pinocchio Paradox, is not not?

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3
    Fanatic Member EntityX's Avatar
    Join Date
    Feb 2007
    Location
    Omnipresence
    Posts
    798

    Re: Can you figure out this pattern?

    Quote Originally Posted by techgnome
    hmmm... I believe that's the mathematical representation of the Pinocchio Paradox, is not not?

    -tg
    Does the Pinocchio Paradox have to do with Pinocchio's nose?
    Make as many mistakes as you can as quickly as you can. We want to make sure that we make a great enough number of mistakes in a given amount of time so that we can be successful.

    "Persistence is the magic of success." Paramahansa Yogananda

  4. #4

    Thread Starter
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Can you figure out this pattern?

    There is a mathematical formula for this pattern... but it's extremely ugly... and no, it has no relation to the Pinocchio Paradox that I'm aware of

  5. #5
    Frenzied Member System_Error's Avatar
    Join Date
    Apr 2004
    Posts
    1,111

    Re: Can you figure out this pattern?

    Quote Originally Posted by timeshifter
    There is a mathematical formula for this pattern... but it's extremely ugly... and no, it has no relation to the Pinocchio Paradox that I'm aware of
    There's a mathematical formula for this?

  6. #6
    Frenzied Member System_Error's Avatar
    Join Date
    Apr 2004
    Posts
    1,111

    Re: Can you figure out this pattern?

    Quote Originally Posted by timeshifter
    Code:
    1
    11
    21
    1211
    111221
    312211
    ...
    After much fiddling, I finally got a program written that accurately figures it out... I personally love it. It's a very simple pattern to grasp from a conceptual standpoint, but the actual math for it is pretty maddening.. hence why I didn't even use any math in the app...
    Start with 1, then each proceeding sequence describes the previous.

    11 -> reads there is one 1
    21 -> reads there is two 1's
    1211 -> reads there is one 2 and one 1
    etc

    I think.

  7. #7

    Thread Starter
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Can you figure out this pattern?

    Quote Originally Posted by System_Error
    Start with 1, then each proceeding sequence describes the previous.

    11 -> reads there is one 1
    21 -> reads there is two 1's
    1211 -> reads there is one 2 and one 1
    etc

    I think.
    Correct. The program I wrote treats the number as a string, not a number... works pretty well, but don't run it past 30 numbers or so... it gets exponentially bigger.

    Quote Originally Posted by System_Error
    There's a mathematical formula for this?
    Quote Originally Posted by http://dheera.net/sci/sequence_sol.php
    ...(D is a recursive function and t is the term number.)
    ...
    % here is a certain non-integer remainder function. 2.1%0.1 would be 0, 2.1%0.2 would be 0.1, 2.1%0.3 would be 0 since 0.3 fits evenly into 2.1, etc.) If you really want conventional operators, you could define % with limits and modular arithmetic...

    D(t+1) = (sigma(K=1,LOG(D(t)*10)-LOG(D(t)*10)%1,((D(t)-D(t)%10^(LOG(D(t))-
    LOG(D(t))%1)+sigma(S=1,LOG(D(t))-LOG(D(t))%1,(((sigma(R=1,LOG(D(t)*10)
    -LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*
    10%10^R)%10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)
    %10^(S-1))%10^S+1)%(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)
    *10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-(
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10
    ^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1))%10^S+.5)*2*(D(t)
    -D(t)%10^(S-1))%10^S))-(D(t)-D(t)%10^(LOG(D(t))-LOG(D(t))%1)+sigma(S=1,
    LOG(D(t))-LOG(D(t))%1,(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)
    *10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)
    -(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1))%10^S+1)%(((
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*
    10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*
    10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1))%10^S+.5)*2*(D(t)-D(t)%10^(S
    -1))%10^S))%10^(K-1))%10^K/10^(K-1)*100^(2*sigma(N=1,K,(((D(t)-D(t)%
    10^(LOG(D(t))-LOG(D(t))%1)+sigma(S=1,LOG(D(t))-LOG(D(t))%1,(((sigma(R=1,
    LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-
    (D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*
    10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%
    10^(R+1)))/10)%10^(S-1))%10^S+1)%(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%
    1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%
    10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)
    *10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1))
    %10^S+.5)*2*(D(t)-D(t)%10^(S-1))%10^S))-(D(t)-D(t)%10^(LOG(D(t))-LOG(D(t))
    %1)+sigma(S=1,LOG(D(t))-LOG(D(t))%1,(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)
    %1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^
    (R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%
    10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1))%10^
    S+1)%(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^
    (R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-(sigma(R=1,
    LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/
    10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1))%10^S+.5)*2*(D(t)-D(t)%
    10^(S-1))%10^S))%10^(N-1))%10^N+1)%(((D(t)-D(t)%10^(LOG(D(t))-LOG(D(t))%
    1)+sigma(S=1,LOG(D(t))-LOG(D(t))%1,(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*
    10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^
    R)%10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-
    D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^
    (S-1))%10^S+1)%(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-
    D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-
    (sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1))%10^S+.5)*2*
    (D(t)-D(t)%10^(S-1))%10^S))-(D(t)-D(t)%10^(LOG(D(t))-LOG(D(t))%1)+
    sigma(S=1,LOG(D(t))-LOG(D(t))%1,(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10
    )%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^
    R)%10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/
    10)%10^(S-1))%10^S+1)%(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,
    ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%
    10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))
    /10)%10^(S-1))%10^S+.5)*2*(D(t)-D(t)%10^(S-1))%10^S))%10^(N-1))%10^
    N+.5))))/100)+(sigma(K=1,LOG(D(t)*10)-LOG(D(t)*10)%1,100^(1+sigma(N=
    1,K-1,2*((((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*
    10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-(
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(N-1))%10^N/10^(N-
    1)+1)%(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%
    10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-(sigma(R=
    1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+
    2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)%10^(N-1))%10^N/10^(N-1)+
    .5)))))/10)

  8. #8
    Hyperactive Member BillGeek's Avatar
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    440

    Re: Can you figure out this pattern?

    That looks... slightly disturbing.

    Anyone able to narrow that down?

  9. #9
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Can you figure out this pattern?

    Quote Originally Posted by BillGeek
    That looks... slightly disturbing.

    Anyone able to narrow that down?
    Here you go:

    D(t+1) = (sigma(K=1,LOG(D(t)*10)-LOG(D
    (t)*10)%1,((D(t)-D(t)%10^(LOG(D(t))-
    LOG(D(t))%1)+sigma(S=1,LOG(D(t))-LOG(D
    (t))%1,(((sigma(R=1,LOG(D(t)*10)
    -LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%
    10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*
    10%10^R)%10^(R+1)))/10)-(sigma(R=1,LOG
    (D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)
    *10-D(t)*10%10^R)%10^(R+1)))/10)
    %10^(S-1))%10^S+1)%(((sigma(R=1,LOG(D
    (t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)
    *10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)
    *10-D(t)*10%10^R)%10^(R+1)))/10)-(
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,
    ABS((D(t)*10-D(t)*10%10^(R+1))%10
    ^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^(R+1
    )))/10)%10^(S-1))%10^S+.5)*2*(D(t)
    -D(t)%10^(S-1))%10^S))-(D(t)-D(t)%10^(
    LOG(D(t))-LOG(D(t))%1)+sigma(S=1,
    LOG(D(t))-LOG(D(t))%1,(((sigma(R=1,LOG(D
    (t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)
    *10-D(t)*10%10^(R+1))%10^(R+2)/10-(D
    (t)*10-D(t)*10%10^R)%10^(R+1)))/10)
    -(sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1
    -1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10
    ^(R+1)))/10)%10^(S-1))%10^S+1)%(((
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)
    %1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10
    ^(R+1)))/10)-(sigma(R=1,LOG(D(t)*
    10)-LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)
    *10%10^(R+1))%10^(R+2)/10-(D(t)*
    10-D(t)*10%10^R)%10^(R+1)))/10)%10^(S-1
    ))%10^S+.5)*2*(D(t)-D(t)%10^(S
    -1))%10^S))%10^(K-1))%10^K/10^(K-1)*100
    ^(2*sigma(N=1,K,(((D(t)-D(t)%
    10^(LOG(D(t))-LOG(D(t))%1)+sigma(S=1,LOG
    (D(t))-LOG(D(t))%1,(((sigma(R=1,
    LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/10-
    (D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)-(
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*
    10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%
    10^(R+1)))/10)%10^(S-1))%10^S+1)%(((
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%
    1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10
    ^(R+2)/10-(D(t)*10-D(t)*10%10^R)%
    10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)
    -LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)
    *10%10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)
    *10%10^R)%10^(R+1)))/10)%10^(S-1))
    %10^S+.5)*2*(D(t)-D(t)%10^(S-1))%10^S))
    -(D(t)-D(t)%10^(LOG(D(t))-LOG(D(t))
    %1)+sigma(S=1,LOG(D(t))-LOG(D(t))%1,
    (((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)
    %1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10
    ^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^
    (R+1)))/10)-(sigma(R=1,LOG(D(t)*10)-LOG
    (D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%
    10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%
    10^R)%10^(R+1)))/10)%10^(S-1))%10^
    S+1)%(((sigma(R=1,LOG(D(t)*10)-LOG(D(t)*
    10)%1-1,ABS((D(t)*10-D(t)*10%10^
    (R+1))%10^(R+2)/10-(D(t)*10-D(t)*10%10^R)
    %10^(R+1)))/10)-(sigma(R=1,
    LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/
    10-(D(t)*10-D(t)*10%10^R)%10^(R+1)))/10)
    %10^(S-1))%10^S+.5)*2*(D(t)-D(t)%
    10^(S-1))%10^S))%10^(N-1))%10^N+1)%(((D
    (t)-D(t)%10^(LOG(D(t))-LOG(D(t))%
    1)+sigma(S=1,LOG(D(t))-LOG(D(t))%1,(((
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*
    10)%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))
    %10^(R+2)/10-(D(t)*10-D(t)*10%10^
    R)%10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10
    )-LOG(D(t)*10)%1-1,ABS((D(t)*10-
    D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D
    (t)*10%10^R)%10^(R+1)))/10)%10^
    (S-1))%10^S+1)%(((sigma(R=1,LOG(D(t)*10)
    -LOG(D(t)*10)%1-1,ABS((D(t)*10-
    D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*10-D
    (t)*10%10^R)%10^(R+1)))/10)-
    (sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)%1-1
    ,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)%10^
    (R+1)))/10)%10^(S-1))%10^S+.5)*2*
    (D(t)-D(t)%10^(S-1))%10^S))-(D(t)-D(t)%
    10^(LOG(D(t))-LOG(D(t))%1)+
    sigma(S=1,LOG(D(t))-LOG(D(t))%1,(((sigma
    (R=1,LOG(D(t)*10)-LOG(D(t)*10
    )%1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%10^
    (R+2)/10-(D(t)*10-D(t)*10%10^
    R)%10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)
    -LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)*
    10-D(t)*10%10^R)%10^(R+1)))/
    10)%10^(S-1))%10^S+1)%(((sigma(R=1,LOG
    (D(t)*10)-LOG(D(t)*10)%1-1,
    ABS((D(t)*10-D(t)*10%10^(R+1))%10^(R+2)
    /10-(D(t)*10-D(t)*10%10^R)%
    10^(R+1)))/10)-(sigma(R=1,LOG(D(t)*10)
    -LOG(D(t)*10)%1-1,ABS((D(t)*
    10-D(t)*10%10^(R+1))%10^(R+2)/10-(D(t)
    *10-D(t)*10%10^R)%10^(R+1)))
    /10)%10^(S-1))%10^S+.5)*2*(D(t)-
    D(t)%10^(S-1))%10^S))%10^(N-1))%10^
    N+.5))))/100)+(sigma(K=1,LOG(D(t)
    *10)-LOG(D(t)*10)%1,100^(1+sigma(N=
    1,K-1,2*((((sigma(R=1,LOG(D(t)*10)
    -LOG(D(t)*10)%1-1,ABS((D(t)*10-D(t)*
    10%10^(R+1))%10^(R+2)/10-(D(t)*10-
    D(t)*10%10^R)%10^(R+1)))/10)-(
    sigma(R=1,LOG(D(t)*10)-LOG(D(t)*10)
    %1-1,ABS((D(t)*10-D(t)*10%10^(R+1))%
    10^(R+2)/10-(D(t)*10-D(t)*10%10^R)
    %10^(R+1)))/10)%10^(N-1))%10^N/10^(N-
    1)+1)%(((sigma(R=1,LOG(D(t)*10)-LOG
    (D(t)*10)%1-1,ABS((D(t)*10-D(t)*10%
    10^(R+1))%10^(R+2)/10-(D(t)*10-D(t)
    *10%10^R)%10^(R+1)))/10)-(sigma(R=
    1,LOG(D(t)*10)-LOG(D(t)*10)%1-1,ABS
    ((D(t)*10-D(t)*10%10^(R+1))%10^(R+
    2)/10-(D(t)*10-D(t)*10%10^R)%10^
    (R+1)))/10)%10^(N-1))%10^N/10^(N-1)+
    .5)))))/10)

  10. #10
    Frenzied Member MaximilianMayrhofer's Avatar
    Join Date
    Aug 2007
    Location
    IM IN YR LOOP
    Posts
    2,001

    Re: Can you figure out this pattern?

    Quote Originally Posted by BillGeek
    That looks... slightly disturbing.

    Anyone able to narrow that down?
    Code:
    while (true) { Console.WriteLine("All your cpu is belong to my loop!"); }

  11. #11
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: Can you figure out this pattern?

    ts: Is there actually a use for this of are you just sto-... bored?

    Fun though...
    Attached Images Attached Images  
    Last edited by wossname; Mar 4th, 2009 at 08:18 AM.
    I don't live here any more.

  12. #12

    Thread Starter
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Can you figure out this pattern?

    Wow... you're mad.

Posting Permissions

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



Click Here to Expand Forum to Full Width