test, how well a forum can learn

Discussion in 'Free Thoughts' started by Search & Destroy, Mar 15, 2008.

  1. Search & Destroy Take one bite at a time Moderator

    Messages:
    1,467
    "How fast can you count the characters in this sentence?"

    Chunk them into 5's? Raw addition? Sorting? etc. What's your best method to count that sentence as quickly as possible?

    I think a test like this might show the intelligence of a forum. Is an ant to an ant colony as a member is to a forum?
     
  2. Guest Guest Advertisement



    to hide all adverts.
  3. invert_nexus Ze do caixao Valued Senior Member

    Messages:
    9,686
    The fastest method, although not necessarily the most accurate, would be by clumping them into noticeable groups. The number within each group would vary from clump to clump. It would all depend on what draws your eye.

    The same sort of technique is useful for counting any large group of objects. Cattle, flowers, mongol horde, etc.
     
  4. Guest Guest Advertisement



    to hide all adverts.
  5. Search & Destroy Take one bite at a time Moderator

    Messages:
    1,467
    Chunking is my intuition too

    On the other hand, holism and reductionism can also be
    regarded as complementary viewpoints, in which case they both would be needed to get a
    proper account of a given system." - wiki

    || ||| |||| |||| |||||| ||| |||||||||||| ||| |||| || |||||||| ||
    ||||||||||||| |||||||||| || ||||| |||| |||| |||| ||||| || |||||| || ||| |
    |||||| ||||||| || | ||||| ||||||| - wiki

    For 'reductionism', the second example is much harder to count. I believe things with unique identity are easier to count quickly. You can instantly tell they are the same paragraphs
     
    Last edited: Mar 15, 2008
  6. Guest Guest Advertisement



    to hide all adverts.
  7. Mr.Spock Back from the dead Valued Senior Member

    Messages:
    6,938
    just write a program that counts input chars.
     
  8. Mr.Spock Back from the dead Valued Senior Member

    Messages:
    6,938
    here look how simple it is in C:

    Code:
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    
    void main()
    {
    	char c;
    	int i=0;
      
      do {
        c=getchar();
        i++;
      } while (c != '\n');
    
      printf("%d\n",i);
    
    }
     
  9. Search & Destroy Take one bite at a time Moderator

    Messages:
    1,467
    How about instead of enumerating the characters sequentially, writing a program to count it some other way?

    Once I count a word that's 5 letters I can identify other 5 letter words just by their size and my intuitive feeling.
     
  10. Search & Destroy Take one bite at a time Moderator

    Messages:
    1,467
    I guess you could just have variables get plugged the 1st time the computer encounters a word with 1 character .. 2 chars, 3 chars and so on, in a rectangle with the corresponding width. And from then on put down the matching boxes. It would just look at the whole paragraph instead of each letter.
     
    Last edited: Mar 16, 2008
  11. Mr.Spock Back from the dead Valued Senior Member

    Messages:
    6,938
    maybe an array of chars or something-i didnt gave it a lot of thought-as long as the complexity is around logn its ok.
     
  12. Lord Hillyer Banned Banned

    Messages:
    1,777
    Slowly, one-at-a-time. If it's worth doing (which it isn't), it's worth doing accurately.
     
  13. Varda The Bug Lady Valued Senior Member

    Messages:
    6,184
    paste it into a text editor
     
  14. Mr.Spock Back from the dead Valued Senior Member

    Messages:
    6,938
    even better

    Please Register or Log in to view the hidden image!

     

Share This Page