Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

306
votes
25answers
19k views

What is the best Battleship AI?

Battleship! Back in 2003, (when I was 17,) I competed in a Battleship AI coding competition. Even though I lost that tournament, I had a lot of fun and learned a lot from it. Now, I would like to ...
10
votes
10answers
2k views

ACM Problem: Coin-Flipping, help me identify the type of problem this is

I'm practicing for the upcoming ACM programming competition in a week and I've gotten stumped on this programming problem. The problem is as follows: You have a puzzle consisting of a square grid ...
5
votes
2answers
100 views

Does there exist a common site to test AI of board games against other AIs?

I am wondering if there exists an site where people can upload their AIs to contest against each other in different board games: Chess, Gomoku, etc. The site would accept source code of programs ...
3
votes
4answers
472 views

A problem from a programming competition… Digit Sums

I need help solving problem N from this earlier competition: Problem N: Digit Sums Given 3 positive integers A, B and C, find how many positive integers less than or equal to A, when ...
1
vote
5answers
370 views

How do I find a segfault in my C++ program? [closed]

I'm a relatively new programmer in C++ and I've been doing coding competitions recently and I've noticed a lot of my time is spent searching for segfaults in my program that I can't seem to find the ...
1
vote
3answers
692 views

Code Golf: ASCII Art number [closed]

Possible Duplicate: Code Golf - Banner Generation Post your shortest code to convert a number into a ASCII art digits. Input - Assume that an integer variable called z has already been set ...
1
vote
1answer
130 views

How to create reactive tasks for programming competitions?

A reactive task is sometimes seen in the IOI programming competition. Unlike batch tasks, reactive solutions take input from another program as well as outputting it. The program typically 'query' the ...
1
vote
2answers
426 views

Is there a C# token counter?

I want to have a programming competition with a friend of mine in C# and the competition will be to write with the fewest number of C# tokens. I have seen C++ token counting programs around but is ...
0
votes
2answers
124 views

Need to write a page or two of code that can impress the recruiter of a software engineer intern position from a big software company [closed]

So I am asked to attach a page or two of code to my resume of the application for a software engineer summer internship, and I'm not sure what's the most important qualification for a position like ...
0
votes
3answers
93 views

why has noone sorted out the mess of browsers, HTML/css and javascript [closed]

Why hasn't someone gone and sorted at least most of the discrepancies between browsers, take for example: -webkit-border-radius: 100px; -moz-border-radius: 100px; border-radius: 100px; or ...
0
votes
1answer
33 views

the relation between popularity and competition in SEO field

what is the relation between popularity and competition in SEO field? i don't mean the formula.i mean the conceptional relation. i mean can we say more competition cause more popularity or ...
0
votes
1answer
48 views

Limit user participation to a server regulated competition? (iphone sdk)

I am new to programming for the iPhone. I want to allow my users to participate in a competition, to a maximum of n times a day. Is there anyway of going about that programmatically and/or through a ...
0
votes
4answers
277 views

What are the criteria for judging codes in competition?

I'm sure you guys have joined or seen competitions with totally weird judging criteria. For example the C/C++ online competition from India few months ago judge by number of semicolons you use, where ...
-2
votes
10answers
2k views

Triangle numbers problem…show within 4 seconds

The sequence of triangle numbers is generated by adding the natural numbers. So the 7th triangle number would be 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28. The first ten terms would be: 1, 3, 6, ...