EdgeWars

Outthink.
Outcode. Outwin.

Welcome to a competitive strategy lab for people interested in math, computer science, probability, and game theory.

THE FIRST GAME IS COMING SOON

Join the Waitlist

No spam. Just early access.

What is EdgeWars?

EdgeWars is a competitive strategy lab where you compete in 1v1 games designed to test pattern recognition, probabilistic thinking, and adaptive strategy against the best of the best in the field or a buddy.

Build in Python

Write your strategy as a Python function. Full control, infinite possibilities.

Stochastic by Nature

Use probability, randomness, and adaptive logic to handle the unknown.

Game Theory in Action

Every match is a test of prediction, adaptation, and exploitation.

Climb the Arena

Compete on the leaderboard for cash rewards. Prove your strategy is the strongest.

How it works

1

You build a Python strategy

Your code decides which move to play.

2

We run repeated matches

Your algorithm faces real opponents.

3

You climb the leaderboard

Compete for cash rewards by being smarter, more adaptive, and more unpredictable.

strategy.py
import random

def strategy(history):
    # history: list of opponent moves
    # returns: 0 = Rock, 1 = Paper, 2 = Scissors

    if not history:
        return random.choice([0, 1, 2])

    # Example: exploit most frequent move
    counts = [history.count(0), history.count(1), history.count(2)]
    opponent_move = counts.index(max(counts))
    return (opponent_move + 1) % 3 # counter move

In a world of randomness,
the edge belongs to those who think deeper.