Thread: Coding Contest- opinions?

  1. #1
    Registered User
    Join Date
    Oct 2001
    Posts
    104

    Question Coding Contest- opinions?

    Hi!

    I am the webmaster of www.cpp-home.com

    I am currently developing a script for contests, but I just can't decide how to make some things...
    My idea so far is:
    Put a new problem on every 2 weeks. Everyone can submit just one solution. Also, the submitted solutions are visible only for people who have submitted one- this way I protect from copying... After the 2 weeks, when a new problem comes, then the last one gets public, and everyone can see it, but not post anymore.
    Also, everyone can comment every solution...

    How does this sound to you guys? Give me suggestions? Should I make all solutions public from the very beginning???
    Just- how would you guys like it... tell me and I will make it in a few days...?
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

  2. #2
    Registered User Generator's Avatar
    Join Date
    Aug 2001
    Posts
    238
    Shameless promotion of your site What you have sounds good.
    What's a matter you no like peppi?

  3. #3
    Registered User
    Join Date
    Oct 2001
    Posts
    104
    You guys want contests... I am doing a script, and want your opinions... and you call that "shameless promotion" ... please, watch you mouth!
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

  4. #4
    _B-L-U-E_ Betazep's Avatar
    Join Date
    Aug 2001
    Posts
    1,412
    I don't want a contest.... and without a mirror, mouth watching becomes very difficult.
    Blue

  5. #5
    Banned Troll_King's Avatar
    Join Date
    Oct 2001
    Posts
    1,784
    A contest is okay but is should involve C/C++ and no API's.

  6. #6
    Registered User
    Join Date
    Oct 2001
    Posts
    104
    The contest will have no APIs and such things... just mathematics, algorithms, and all that wirtten in C/C++ /as the one whishes.../.

    But guys- give opinions on the questions I asked in my first post here...???? Should everything be public from the very beginning, or what???

    Betazep- about the mouth watching- I god angry, because Generator says I am promoting my site... no I AM NOT!!! Or at least not here, in the board! I want opinions, so that we guys can have great contests after that...

    Peace!
    and give suggestions pleae!
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

  7. #7
    Registered User Generator's Avatar
    Join Date
    Aug 2001
    Posts
    238
    >>You guys want contests... I am doing a script, and want your opinions... and you call that "shameless promotion" ... please, watch you mouth!

    Loobian lighten up. Contests are great, but there are a million other sites that have coding contests. Yours isn't going to be any more special than the other sites. The only cool webmaster on the net is the cprogramming.com guru.
    What's a matter you no like peppi?

  8. #8
    Registered User
    Join Date
    Oct 2001
    Posts
    104
    Generator,
    1- The sites that has coding contest are not that much
    2- My visitors want that, so do I, and I will do it!
    3- If the sites were so many, why I see threads asking for such things?
    4- Don't talk for anyone you don't know... it doesn't make good impression...

    So, if anyone is willing to give suggestions, give them... if not, then don't flood this thread, please!
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

  9. #9
    Banned Troll_King's Avatar
    Join Date
    Oct 2001
    Posts
    1,784
    Don't let anyone see anyone elses code until the contest is over. Than just post the top 5 codes. Don't use names except for the winner.

  10. #10
    Registered User
    Join Date
    Oct 2001
    Posts
    104
    But how do I determine the top 5 coders???

    I can't determine them myself:
    1) because I am too busy
    2) I don't pretend to be so good
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

  11. #11
    Banned Troll_King's Avatar
    Join Date
    Oct 2001
    Posts
    1,784
    Okay, this basically means that there is no contest. Oh well, I would have participated. I don't think I'm the best coder here or anything, but I would have at least competed. No, you definately have to know which code is the best so you would have to be an experienced programmer to hold such a contest.

  12. #12
    Registered User
    Join Date
    Oct 2001
    Posts
    28
    Maybe you should have an alternative contest.
    See who can write the most complex program for a simple problem or the slowest program for a problem or something different like that (just for fun).

  13. #13
    Registered User
    Join Date
    Oct 2001
    Posts
    104
    Well, the idea /mine at least/ is not to have winners... the idea of this "contest" is to practice... actually, as a section, it will be named "Problems" but not "Contest"... so, you get the point... it's not exactly contest, but just given problems to practice... and everyone can compare his code to the others...
    How does it sound? I aksed a lot of programmers /friends of mine/ and they all liked it, as they don't "compete" for the winning, but for the competition...for the game :-) and for the fun!!!
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

  14. #14
    Registered User
    Join Date
    Oct 2001
    Posts
    104
    Originally posted by SPOOK
    Maybe you should have an alternative contest.
    See who can write the most complex program for a simple problem or the slowest program for a problem or something different like that (just for fun).
    I will always be the winner in this hehehe
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

  15. #15
    Registered User
    Join Date
    Oct 2001
    Posts
    104
    By the way, here is a problem that I found today...it's not exactly problem, but very nice thing... it is- write program /as simplier and faster as faster running as you can/ , that returns the first 2 digits of a long int.. for example you have 23423 the program must return 23 only...

    here is my solution, which I do really belive is the best...:
    #include <iostream.h>

    void main()
    {
    long int number=56465412;

    while(number-100>=0)
    number/=10;

    cout << "number: "<<number<<endl;
    }

    I will be happy to see your solutions, too... just don't copy mine :-)
    Ilia Yordanov,
    http://www.cpp-home.com ; C++ Resources

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Expression Evaluator Contest
    By Stack Overflow in forum Contests Board
    Replies: 20
    Last Post: 03-29-2005, 10:34 AM
  2. WANTED: Contest Master
    By kermi3 in forum A Brief History of Cprogramming.com
    Replies: 15
    Last Post: 01-23-2003, 10:15 PM
  3. Coding Contest....
    By Koshare in forum A Brief History of Cprogramming.com
    Replies: 46
    Last Post: 10-14-2001, 04:32 PM