Questions tagged [simulation]
For challenges involving simulation.
46 questions
17 votes
1 answer
5k views
Simplified Piet Interpreter
Background Piet is an esoteric stack-based programming language in which programs are images meant to resemble abstract paintings. To keep the challenge from being unnecessarily complex, you will not ...
21 votes
25 answers
3k views
Climbing the Bookshelf
Introduction You're making a robot that can navigate a set of books of varying heights. It can climb books and jump off books, but if the distance is too big it will stop to prevent damage. To figure ...
8 votes
7 answers
535 views
A Suitable Mission
Summer Klerance, a senior in college, is what her teachers refer to as GBL*. Students in her probability class have been assigned individual problems to work on and turn in as part of their final ...
10 votes
8 answers
1k views
Produce an image based on an elementary cellular automata ruleset
What is elementary cellular automata? Since I'm not sure I'll be able to explain this so that somebody who has never heard of this is able to understand, I'm giving an explanation from https://...
15 votes
8 answers
1k views
Simulate a model neuron
An Izhikevich neuron is a simple yet quite effective model of a biological neuron, designed for use in a discrete time-stepping simulation. In this golfing challenge, you will be implementing this ...
2 votes
6 answers
383 views
52 Week Challenge [duplicate]
The 52 week challenge is a way to save money. For example, Week 1, you save $1.00. Week 2 you save $2.00, and it continues through the year, adding one more dollar to each week’s savings goal. By Week ...
30 votes
14 answers
7k views
Kill it With Fire
Disclaimer: The story told within this question is entirely fictional, and invented solely for the purpose of providing an intro. I am an evil farmer, and to drive up the price of wheat in my area, ...
29 votes
9 answers
2k views
Fire propagation simulator
Suppose we have a matrix like this: 11111 12221 12321 12221 11111 This matrix represents a terrain, and each cell represents a portion of terrain. The number in ...