Everything you need to know about playing the Lemonade Stand Game
The Lemonade Stand Game is a simulation where players compete to run the most successful lemonade stand. Each day, players make decisions about:
Players can compete against each other or against AI opponents. The game runs for a specified number of days, and the player with the most cash at the end wins.
def your_ai_name(player_state, game_state, prices, previous_info):
# Your logic here...
return {
'lemons_bought': 0, # Integer: Number of lemons to buy
'lemonade_prepared': 0, # Integer: Number of cups to prepare
'price_per_cup': 1.00, # Float: Price to charge per cup
'advertising_spend': 0 # Integer: Amount to spend on advertising
}
Parameter | Type | Description |
---|---|---|
player_state | dict |
|
game_state | dict |
|
prices | dict |
|
previous_info | dict or None |
|