this post was submitted on 27 Jun 2025
841 points (98.6% liked)

Programmer Humor

24648 readers
889 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 17 points 3 days ago (6 children)

Did the program cheat? Tic tac toe is a tie if opponents play correctly.

[–] [email protected] 2 points 2 days ago (3 children)

How do you define cheating in such a simple game?

[–] rat 4 points 2 days ago (2 children)

Placing moves in invalid locations, passing a turn, or making multiple moves on one turn?

[–] [email protected] 1 points 2 days ago (1 children)

There are no invalid locations in tic Tac toe, passing a turn provides no advantage, I suppose you could take extra turns to cheat.

[–] rat 1 points 22 hours ago

An invalid turn would be something like placing a move on top of an already-filled square or outside of the 9 grid spaces. It seems obvious to a human that you can't do these things, but computer bugs have a tendency to do things you don't expect. And yes, passing a turn doesn't provide an advantage, but I listed it because it's still technically cheating.

load more comments (2 replies)