Questions tagged [community-challenge]
Reviewing code is fun! Use this tag to identify your post as an entry to the current community challenge. See the Community Bulletin, or browse the CR Meta site for more info. Typically you should also tag community-challenge questions with the [game] tag as well.
128 questions
5 votes
2 answers
1k views
another Tic-Tac-Toe Game
I have a bit of experience in programming but not that much. I was trying to create a TicTacToe Game in Javascript. I was doing my best to have a good structure. I was thinking about using classes, ...
2 votes
2 answers
207 views
AdventOfCode Day 1 : find X element matching a criteria in haskell
This problem is from https://adventofcode.com/2020/ day 1. I need to find the N entries of inputs that sum to 2020 and then multiply those N numbers together. ...
2 votes
1 answer
117 views
Finding minimum weighted matching in sink source graph
I have three lists of nodes. sources sinks pipes There is a directed weighted graph from sources to pipes to sinks. Sources are only connected to pipes and pipes only to sinks. But sources are not ...
7 votes
3 answers
4k views
Finding the position in a triangle for the given challenge
The LAMBCHOP doomsday device takes up much of the interior of Commander Lambda's space station, and as a result the prison blocks have an unusual layout. They are stacked in a triangular shape, and ...
6 votes
1 answer
4k views
Elevator simulator
I have an elevator simulator. After launching the script it always waits for the user input. The user can press get number, where number is a floor where the passenger is located. Note that one of the ...
22 votes
4 answers
2k views
Complex tokenizer in C#
As we have our Community Oriented Development Extravaganza, Requiring Extreme Vigor Inciting Extraordinary Winners 2017 Challenge. Finally I had some time to write a tokenizer for my own language. It ...
54 votes
1 answer
2k views
Swiftly turning wheels – The May 2017 Community Challenge
This is my attempt at the May 2017 Community Challenge in Swift, with a chain consisting of rigid links. I took this as an opportunity to learn SpriteKit, Apple's framework for 2D games. At least ...
9 votes
2 answers
452 views
Rock, Paper, Whatever - A small commandline game
My rational for this program, was to learn more of Python's standard library, I didn't actually know cmd was even in it until I started this program. It's also the ...