27
votes
21answers
1k views
Code Golf: Fractran
The Challenge
Write a program that acts as a Fractran interpreter. The shortest interpreter by character count, in any language, is the winner. Your program must take two inputs: …
5
votes
20answers
635 views
Insertion Sort Code Challenge
My task for you this time is to implement an insertion sort algorithm. Sure, everyone and his dog can do it; but how easy is it to do in the fewest characters? One must take an ar …
324
votes
21answers
20k views
Twitter image encoding challenge
If a picture's worth 1000 words, how much of a picture can you fit in 140 characters?
Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have dec …
7
votes
5answers
224 views
What is a good community run venue for finding programming competitions?
The closure of a recent entertaining 'question' got me wondering what would have been a better forum for the challenge presented. I know there is a similar question, but most of t …
54
votes
66answers
15k views
Programming challenge: can you code a hello world program as a Palindrome?
So the puzzle is to write a hello world program in your language of choice, where the program's source file as a string has to be a palindrome.
To be clear, the output has to be e …
4
votes
11answers
579 views
Write your own square root function.
How do you write your own function for finding the most accurate square root of an integer?
After googling it, I found this, but firstly, I didn't get it completely, and secondly, …
4
votes
8answers
401 views
Code Challenge: 2D Array Search
Ok this one is like my previous array searching challenge but with a twist.
You must build a function to search one 2d array (or suitable equivalent in your language) of 32-bit in …
0
votes
5answers
308 views
Write your own malloc function. [closed]
Possible Duplicate:
I want to make my own Malloc
One of my friend was asked this question in a job interview at NVIDIA
Write your own malloc function.
How will you w …
2
votes
5answers
203 views
Human inspector vs. programmer (was: Algorithm to detect if any circles overlap)
Problem
This question actually came up at work today. We are planning an experiment where we will show a series of maps to users. Each map has 31 symbols on it. Each symbol also h …
8
votes
35answers
1k views
Array Searching code challenge
Here's my (code golf) challenge:
Take two arrays of bytes and determine if the second array is a substring of the first. If it is, output the index at which the contents of the sec …
31
votes
13answers
3k views
The Skyline Problem.
I just came across this little problem on UVA's Online Judge and thought, that it may be a good candidate for a little code-golf.
The problem:
You are to design a program to assi …
1
vote
4answers
350 views
Coding brain teaser to update an array (language agnostic)
All,
I need a clever way to implement this algorithm (for work) as quickly and cleanly as possible:
I think I've removed all the language specific issues and boiled it down to thi …
4
votes
7answers
461 views
How to do matrix conversions by row and columns toggles?
I have got a square matrix consisting of elements either 1
or 0. An ith row toggle toggles all the ith row elements (1
becomes 0 and vice versa) and jth column toggle toggles all
t …
2
votes
1answer
148 views
What types of solutions are applicable to real-time controller tasks? [closed]
This question now lives at AskSci.com. Please answer there if you want to respond.
I'm referring to controller tasks where a computer program controls some agent in a simulated wo …
0
votes
2answers
190 views
Code challenge problem involving matrix transformation.
Hello,
Im working on a code challenge problem involving transforming a given binary matrix into another. I wrote the code in C++, and it works for the test cases i looked at, but …
