Code Golf is no longer on-topic for Stack Overflow. See http://codegolf.stackexchange.com
0
votes
1answer
205 views
Reducing perl code in characters [closed]
So I had this question in a programming contest about calculating Leibniz formula in the least amount of characters
With the input format to the code as:
The first line contains an integer T ...
-3
votes
1answer
125 views
Cut Down Sentence [closed]
I am trying to solve this probelm in 'C'. My code is of 119 chars while people have submitted code below 70 chars in 'C'.Please Guide me to improve my code. My code:-
main(i){
char a[99],*b,c[99];
...
0
votes
1answer
47 views
Weird syntax error when comparing x with x.method
Why this works fine:
t="
"+$<.read;puts t.reverse==t ?"YES":"NO"
but this:
t="
"+$<.read;puts t==t.reverse ?"YES":"NO"
says:
A.rb:2: syntax error, unexpected tCHAR, expecting $end
...
0
votes
2answers
262 views
Code that keeps on generating itself>
I don't mean code to generate a fractal, but I mean, what is the best way to simulate code being continuously displayed and streamed on screen, as if it's new.
For example, if a programmer were ...
1
vote
2answers
269 views
Round unsigned int up to the multiple of 4 in C++ [closed]
How would you implement the function unsigned round_up_to_multiple_of_4(unsigned x)? Let's assume performance is not an issue, so the shortest code is welcome. My solution is:
return x+(4-x%4)%4;
...
5
votes
2answers
587 views
How to prove that a=!!a is the shortest way to write a = (a == 0 ? 0 : 1);
I came across this C puzzle at http://cotpi.com/p/6/ which asks the shortest statement to write a = (a == 0 ? 0 : 1);.
The only answer in that page is: a=!!a;
Strangely, a proof has not been ...
-4
votes
1answer
757 views
Code Golf: Shortest python program to convert from celsius to fahrenheit and vice versa [closed]
A challenge for you.
A friend and I were having a competition to see who could produce the shortest python program which converted celsius to fahrenheit and vice versa whilst maintaining "some" ...
-1
votes
1answer
367 views
Code golf total triangle [closed]
http://codegolf.com/total-triangles -- this is the website that is where the challenge is at.
I looked carefully and nobody has really answered or asked this question but I am using pascals triangle ...
2
votes
3answers
252 views
Can anyone help me trim down this (anti-DRY) code?
I'm a super novice rails user but am even worse with javascript, I have this chunk of code which, with the jQuery maphighlight plugin lets me toggle a highlighted effect on shapes in an imagemap. Its ...
0
votes
7answers
673 views
Convert true and false in Coffeescript to 1 and -1 respectively
if x < change.pageX # pageX is cross-browser normalized by jQuery
val = Number(elem.text())
return elem.text(o.max) if val + o.step > o.max
return ...
2
votes
2answers
191 views
How do I turn on function name completion?
In golfing, one tries to complete a puzzle in as few characters as possible, generally using the base language only. One trick for golfing in R is to use partial completion so that e.g. ...
2
votes
1answer
392 views
What causes NoClassDefFoundError on a main class?
On http://golf.shinh.org I found this "Enum Answer" to a Java code golf problem, and it won't work for me.
enum R{R;System z;{try{for(;;)for(int ...
2
votes
3answers
6k views
Ruby read/write to file in 1 line of code
I am kind of a newbie to Ruby, I am working out some katas and I stuck on this silly problem. I need to copy the content of 1 file to a new file in 1 line of code
First try:
File.open(out, ...
2
votes
1answer
740 views
Can this Linux / 32bit x86 assembly “Hello, World” be made smaller still?
The following 32bit x86 Linux program prints a string of arbitrary length (as long as a program can be, anyway) and does exit(0) afterwards:
.global _start ; notice on entry here, all ...
1
vote
2answers
322 views
Convert DateTime to shortest possible version number (for url)
Challenge: convert a 'modified date' DateTime of an image file to a version number / string suitable for maintaining uniqueness in a url, so each modification of the image generates a unique url, the ...
301
votes
27answers
17k views
Is there a better way of writing v = (v == 0 ? 1 : 0);
I want to toggle a variable between 0 and 1. If it's 0 I want to set it to 1, else if it's 1 I want to set it to 0.
This is such a fundamental operation that I write so often I'd like to investigate ...
0
votes
0answers
342 views
Space invaders in least number of bytes? [closed]
I heard about Space invaders competitions where the working implementation with the fewest number of bytes wins. Do you have any examples, links, stories to tell etc from this type of competition? The ...
6
votes
3answers
1k views
Is there a better PHP way for getting default value by key from array (dictionary)?
In python one can do:
foo = {}
assert foo.get('bar', 'baz') == 'baz'
In PHP one can go for a trinary opeartor as in:
$foo = array();
assert( (isset($foo['bar'])) ? $foo['bar'] : 'baz' == 'baz');
...
-4
votes
1answer
717 views
Coding a daily horoscope algorithm… ! [closed]
I have to code a daily horoscope for the 12 zodiac signs, it needs to be self-sustained (no external ressources), quite randomized but fixed by zodiac sign for each day.
I need to extract three ...
8
votes
0answers
716 views
Techniques for achieving ridiculously concise Clojure code [closed]
I've recently been enjoying a couple of recreational "Code Golf" contests where the objective is to solve a problem in the smallest possible number of characters.
Clojure has actually proved to do ...
5
votes
3answers
594 views
Why is my game-of-life code so verbose?
I've tried and tried and tried, but I still have the feeling that this is bloated, and probably taking up too much disk space! I'm sorry for wasting your bandwidth with it too:
class String;def i ...
1
vote
2answers
212 views
Byte saving techniques for Ruby [duplicate]
Possible Duplicate:
Code golf in Ruby: What's your favourite trick?
Is there any byte saving techniques for Ruby like this one for JavaScript. If there's none already, can we make a ...
1
vote
2answers
160 views
Detect IsAlive on an IObservable
I'm writing a function IsAlive to take an IObservable<T>, and a timespan, and return an IObservable<bool> The canonical use case is to detect if a streaming server is still sending data.
...
3
votes
0answers
227 views
Code-Golf: Punch Clock Rounding [closed]
Shift-work requires that workers punch a clock to record the time they start work (punch-in, shift start) and the time they stop work (punch-out, shift stop).
These times are recorded as precise but ...
0
votes
0answers
148 views
django blog golf? [closed]
How few lines can you glue together a basic blog application (entries, comments, admin) using django?
For instance, we all know the admin interface is baked in. Ok, plus you have ...
1
vote
4answers
350 views
How to Rewrite of One Line Code (or Less Line Code in command line) of this code in Perl?
I have a code like that:
#!/usr/bin/perl
use strict;
use warnings;
my %proteins = qw/
UUU F UUC F UUA L UUG L UCU S UCC S UCA S UCG S UAU Y UAC Y UGU C UGC C UGG W
CUU L CUC L CUA L CUG ...
1
vote
3answers
3k views
Convert array of byte values to base64 encoded string and break long lines, Javascript (code golf)
This JavaScript function takes an array of numbers (in the range 0-255) and converts to a base64-encoded string, then breaks long lines if necessary:
function encode(data)
{
var str = "";
for ...
10
votes
14answers
1k views
Code that return True if only one or two of three params are true
I need a code that return True if only one or two of three params are true
what is the shortest/best way?
0
votes
1answer
294 views
Code Golf: Snake Folding [closed]
As mentioned in this odd video here at about 50 seconds, how many different combinations of the folded snake are there for a given snake of X segments in length.
Here is how it works: A snake ...
6
votes
4answers
232 views
Any other ways to emulate `tr` in J?
I picked up J a few weeks ago, about the same time the CodeGolf.SE beta opened to the public.
A recurrent issue (of mine) when using J over there is reformatting input and output to fit the problem ...
3
votes
2answers
1k views
Shortest code in python (Spoj SIZECON) [closed]
I have been trying this problem SIZECON at spoj. But i not find the best solution in python.
My solution is uses 46 characters. (and get the 46 score)
Here is my solution:
c=0
...
17
votes
4answers
1k views
garble function contest
Remember that away message on aim that said how:
Aoccdrnig to a rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the ...
3
votes
3answers
2k views
JavaScript Golf - Cartesian Product [closed]
Lets play some simple-golf. This is like code-golf, but rather than going for very few characters, we want to make a very simple implementation.
Here's my implementation of a Cartesian product for a ...
3
votes
1answer
425 views
Code Golf: Calculate Ratings Percentage Index (RPI)
Problem
The Rating Percentage Index (RPI) is used to rank sports teams
(notably NCAA basketball) based upon a team's wins and losses and its
strength of schedule. This code golf challenge is to ...
2
votes
6answers
1k views
Code golf: CSV to HTML Table [closed]
An example is worth a thousand words, so I'll give you three.
Write a function, in your language of choice, that will:
When given the empty string, output <table></table>
When given the ...
33
votes
20answers
4k views
Code Golf: Finite-state machine! [closed]
Finite state machine
A deterministic finite state machine is a simple computation model, widely used as an introduction to automata theory in basic CS courses. It is a simple model, equivalent to ...
15
votes
8answers
991 views
Code Golf: Numeric Ranges
Challenge
Compactify a long list of numbers by replacing consecutive runs with ranges.
Example
Input
1, 2, 3, 4, 7, 8, 10, 12, 13, 14, 15
The input is guaranteed to be in ascending order and will ...
11
votes
3answers
3k views
The shortest way to convert infix expressions to postfix (RPN) in C
Original formulation is given here (you can try also your program for correctness) .
Additional rules:
1. The program should read from standard input and write to standard output.
2. The program ...
0
votes
9answers
1k views
Code Golf: Take 2 inputs (number) and print sum in C
We were trying a few crazy things with c and came up with this question.
Please note that there is nothing important to learn (probably?) from this, but its just for FUN.
What I want is a c program ...
34
votes
4answers
3k views
Code Golf: Countdown Number Game
Challenge
Here is the task, inspired by the well-known British TV game show Countdown. The challenge should be pretty clear even without any knowledge of the game, but feel free to ask for ...
19
votes
9answers
728 views
CodeGolf: Find the Unique Paths
Here's a pretty simple idea, in this pastebin I've posted some pair of numbers. These represent Nodes of a directed graph. The input to stdin will be of the form, (they'll be numbers, i'll be using an ...
0
votes
3answers
368 views
Perl - CodeGolf - Nested loops & SQL inserts
I had to make a really small and simple script that would fill a table with string values according to these criteria:
2 characters long
1st character is always numeric (0-9)
2nd character is (0-9) ...
12
votes
10answers
1k views
Convert decimal number to excel-header-like number
0 = A
1 = B
...
25 = Z
26 = AA
27 = AB
...
701 = ZZ
702 = AAA
I cannot think of any solution that does not involve loop-bruteforce :-(
I expect a function/program, that accepts a decimal number and ...
17
votes
14answers
2k views
Code Golf: Validate Sudoku Grid
Introduction
A valid Sudoku grid is filled with numbers 1 to 9, with no number occurring more than once in each sub-block of 9, row or column. Read this article for further details if you're ...
17
votes
4answers
1k views
Code Golf: Towers of Hanoi
Rules
The Towers of Hanoi is a puzzle, and if you are not very familiar with it, here is how it works:
The play field consists of 3 rods, and x number of disks, each next one bigger than the ...
8
votes
11answers
544 views
Automatically sum numeric columns and print total
Given the output of git ... --stat:
3 files changed, 72 insertions(+), 21 deletions(-)
3 files changed, 27 insertions(+), 4 deletions(-)
4 files changed, 164 insertions(+), 0 deletions(-)
9 files ...
19
votes
17answers
3k views
Code Golf: Gray Code [closed]
The Challenge
The shortest program by character count that outputs the n-bit Gray Code. n will be an arbitrary number smaller than 1000100000 (due to user suggestions) that is taken from standard ...
6
votes
6answers
383 views
Household mail merge (code golf)
I wrote some mail merge code the other day and although it works I'm a turned off by the code. I'd like to see what it would look like in other languages.
So for the input the routine takes a list of ...
1
vote
20answers
1k views
Difference of sums
I take no credit for this challenge at all. It's Project Euler problem 6:
The sum of the squares of the first ten natural numbers is,
1^(2) + 2^(2) + ... + 10^(2) = 385
The square of the sum of the ...
17
votes
7answers
2k views
Async Google Analytics [Javascript Golf]
Unfortunately, this may not be a valid Code-Golf question as it is likely Javascript only; however, since this is likely to be the only useful-in-the-real-world code-golf contest I'm going to go ahead ...
