Top new questions this week:
|
This is a program to solve: Images with all Colors from Code Golf:
Make images where each pixel is a unique color (no color is used twice
and no color is missing).
Create the image ...
|
I've just started learning C# using Rob Miles' C# Programming Yellow Book and some related lab exercises from his website. I did one of them and produced a solution that works. In Miles' book, he says ...
|
I have written a Boggle board solver in Python 3. I would like comments on readability and structure. Thank you!
Boggle
Boggle is a board game with a 4x4 board of squares, each of which has a ...
|
Here is some code I wrote as a solution to Programming Exercise 15.3 in Stephen Prata's C Primer Plus, 6th Edition. It is probably worth pointing out that the title of the chapter is Bit Fiddling. The ...
|
My code is attempting to implement FP in an efficient / readable manner into some of my video games. I realize this may be a bit subjective, but I feel there is enough merit / objectivity to be of ...
|
This is a tool I needed for some other things (it's incomplete, but almost done) which is essentially just a text-editor that has two text-boxes: the left being the binary view / raw bytes, the right ...
|
I recently answered a question
on Stack Overflow about finding the k-largest element in an array, and
present my implementation of the Quickselect algorithm in Swift for review.
This is essentially ...
|
Greatest hits from previous weeks:
|
Is there a better way to implement my code in Java? I used to code this in C++ and pretty much worked right off the bat. But in Java, it is different, as it won't let me input data on the string ...
|
During work, I was given this task: to group elements with similar properties in the array.
In general, the problem is as follows:
var list = [
{name: "1", lastname: "foo1", age: "16"},
...
|
Can you answer these?
|
I've written my first program in GO, a command line tool that parses JSON containing events from a file or from STDIN and outputs the upcoming events in sorted order. Please critique it!
package ...
|
Array.prototype.fastStack
To combat GC and its impact on animation I created Array.fastStack that adds to the array prototype.
It's a sort of stack that bubbles unused objects up and active object ...
|
I wrote this code a while ago, which is an excerpt of a payment service library:
# recover a transaction details from the Wirecard API
module Wirecard
module Elastic
class Request
class ...
|