In the context of programming, a Rosetta Stone question asks for solutions to a problem, in multiple languages.
1
vote
2answers
264 views
Learning Spring 3 coming from a .NET MVC3 background
I'm recently joined a development team that is building a web app using Java's Spring 3 framework. I have a strong background in ASP .NET MVC3 application structure and components and am looking for ...
1
vote
1answer
79 views
Where can I find an extensive list of string formatting examples?
I'm investigating the differences / pros / cons between different string formatting APIs
(printf vs. << vs. String.Format() etc.) and this lead me to wonder:
Is there are any extensive list of ...
8
votes
6answers
461 views
Displaying numbers to non-technical users
I propose the following desiderata for displaying numbers to non-technical users:
Don't replace significant digits with zeros, as that's ambiguous.
No scientific notation, which is the technically ...
2
votes
3answers
163 views
Same program 3 languages help checking syntax
Can you check my code and make sure it is correct.
I want the user to input a number and then print hello world + i that many times.
In Perl I am having a problem where I can't <br> to the next ...
3
votes
1answer
434 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 ...
3
votes
2answers
960 views
Examples of IOC/DI over Singleton
Just started learning/reading about DI and IOC frameworks.
Also I read many articles on SO and internet that say that one should prefer
DI/IOC over singleton.
Can anyone give/link examples of ...
19
votes
9answers
739 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 ...
2
votes
3answers
130 views
Solving problems with near infinite potential solutions
Today I read the following problem:
Use the digits 2, 0, 1, 1 and the
operations +, -, x, ÷, sqrt, ^ , !,
(), combinations, and permutations to
write equations for the counting
numbers 1 ...
49
votes
40answers
4k views
Code Golf: Morris Sequence
The Challenge
The shortest code by character count that will output the Morris Number Sequence. The Morris Number Sequence, also known as the Look-and-say sequence is a sequence of numbers that ...
1
vote
1answer
328 views
Nested(deep) iteration for loops ? Good or Bad Practice?
I wanted to ask,
If writing nested(deep) iteration loops (as shown in example) a bad practice (in OOPs)?
For example :
If i want to zip all files that in all Workspaces.
Given example ...
-4
votes
6answers
496 views
get month name from month number and vise versa
I start with c# syntax to get month name from month number,
System.Globalization.DateTimeFormatInfo mfi = new
System.Globalization.DateTimeFormatInfo();
...
14
votes
25answers
2k views
alternative solutions to this programming problem? all languages welcome
Create a method that:
Given a string, look for a mirror image (backwards) string at both the beginning and end of the given string. In other words, zero or more characters at the very beginning of ...
25
votes
6answers
2k views
Code Golf: draw ascii art stars
Since this week noone has posted a code-golf challenge, I'll give it a try. I do it so you can do something other than playing with swords during those long compile cycles.
The challenge:
Draw ASCII ...
6
votes
3answers
1k views
Emulating lisp cons cells in Python
A list in lisp is a series of cons cells, but in Python, a native list is a different kind of object. For translating code from lisp to Python, one might simply take lisp lists and translate them to ...
5
votes
1answer
191 views
Emulating lisp cons cells in Tcl
A list in lisp is a series of cons cells, but in Tcl, a list is a string with whitespace separating the elements. For translating code from lisp to tcl, one might simply take lisp lists and translate ...
7
votes
16answers
970 views
How to factor a number functionally
For example, if the input is 825 the output expected is (0 1 2 0 1). What this means is: 0 two's, 1 three's, 2 five's, 0 seven's and 1 eleven.
Doing this imperatively was quite easy for me. ...
3
votes
4answers
964 views
Code Golf: JSON Binary Encoding/Decoding
The Challenge
Encode ANY series of integers, floats, strings, nulls, booleans and arrays/objects of them, into a binary format and decode it again.
The term object refers to a HashMap/Dictionary
...
25
votes
14answers
2k views
Code Golf: Calculate Orthodox Easter date
The Challenge
Calculate the Date of the Greek Orthodox Easter (http://www.timeanddate.com/holidays/us/orthodox-easter-day) Sunday in a given Year (1900-2100) using the least amount of characters.
...
49
votes
33answers
4k views
Code Golf: Happy Primes!
It's Sunday, time for a round of code golf!
Challenge
Write the shortest source code by character count to determine if an input number is a "happy prime", "sad prime", "happy non-prime", or "sad ...
8
votes
6answers
342 views
Are there mechanisms similar to Go's defer in other languages?
I am not familiar with mechanisms similar to Go's "defer" in other languages. Are there similar mechanisms in other languages?
51
votes
7answers
3k views
Code Golf: Regex parser
The goal
Today's Code Golf challenge is to create a regex parser in as few characters as possible.
The syntax
No, I'm not asking you to match Perl-style regular expressions. There's already a very ...
69
votes
22answers
7k views
Code Golf: Conway's Game of Life
The Challenge: Write the shortest program that implements John H. Conway's Game of Life cellular automaton. [link]
EDIT: After about a week of competition, I have selected a victor: pdehaan, for ...
3
votes
12answers
761 views
Checking whether a number is mathematically a perfect number
The algorithm should check a given number and return 'true' if it is a perfect number or 'false' if it is not.
The wikipedia definition of a perfect number:
In mathematics, a perfect number is a
...
12
votes
9answers
1k views
Code Golf: Frobenius Number [closed]
Write the shortest program that calculates the Frobenius number for a given set of positive numbers. The Frobenius number is the largest number that cannot be written as a sum of positive multiples of ...
19
votes
40answers
3k views
Code-golf: Output multiplication table to the Console
I recently pointed a student doing work experience to an article about dumping a multiplication table to the console. It used a nested for loop and multiplied the step value of each.
This looked like ...
9
votes
4answers
326 views
Understanding the motion of a disk using two static switches
This is a major re-write of the original question, I tried to clarify those points that were evidently confusing for some in my first version of the question. Thanks for the input in helping formulate ...
18
votes
12answers
1k views
Code Golf: Build Me an Arc [closed]
Challenge
The shortest program by character count that accepts standard input of the form X-Y R, with the following guarantees:
R is a non-negative decimal number less than or equal to 8
X and Y ...
16
votes
6answers
2k views
Code Golf: Who has the best poker hand? [closed]
I love challenges like this, I'll hopefully submit my answer soon.
Which player has the best 7 card hand?
Given an unordered list of 9 cards (separated by a space), work out which player has the ...
20
votes
14answers
1k views
Code Golf - Generate nearby page numbers based on the current page
The challenge is to create an algorithm for generating a specifically-sized subset of numbers in a sequence based on the current position in that sequence.
While navigating through the many pages of ...
4
votes
1answer
542 views
Code Golf: The Unisex Restroom Simulation
Background
The unisex restroom problem is a classical synchronization problem in computer science.
The general class of problems that this simulates is as follows: If you have k types of threads ...
52
votes
29answers
4k views
Code golf: Digital clock
Possible Duplicate:
Code Golf: Seven Segments
The task: Write the smallest possible program (least number of characters) that takes input in the hh:mm format and outputs this as a digital ...
87
votes
30answers
5k views
Code Golf: Four is magic [closed]
The puzzle
A little puzzle I heard while I was in high school went something like this...
The questioner would ask me to give him a number;
On hearing the number, the questioner would do some sort ...
22
votes
15answers
2k views
Code Golf: Pig Latin [closed]
Challenge:
Take a sentence of input of any length and convert all the words in that sentence to pig latin. If you do not know what pig latin is please read Wikipedia: Pig Latin.
Specifications:
...
26
votes
4answers
2k views
Code Golf: 2D Platformer
The Challenge
Reach the end of the level!
Bonus points if you hit each of the (C)oin blocks exactly 2 times.
Disallowed
Hard coding the command sequence in any way.
Your favorite "One ...
10
votes
7answers
719 views
Code golf: “Color highlighting” of repeated text
(Thanks to greg0ire below for helping with key concepts)
The challenge:
Build a program that finds all substrings and "tags" them with color attributes (effectively highlighting them in XML).
The ...
152
votes
59answers
19k views
Code golf: Word frequency chart [closed]
The challenge:
Build an ASCII chart of the most commonly used words in a given text.
The rules:
Only accept a-z and A-Z (alphabetic characters) as part of a word.
Ignore casing (She == she for ...
8
votes
7answers
1k views
IP addresses range
Given an IP address and mask like 192.168.10.30/24 on STDIN,
return the matching range of addresses.
i.e.
input output
192.168.10.30/24 192.168.10.0-192.168.10.255
127.0.0.0/31 ...
19
votes
7answers
2k views
Code Golf: Rotating Maze
Code Golf: Rotating Maze
Make a program that takes in a file consisting of a maze. The maze has walls given by #. The maze must include a single ball, given by a o and any number of holes given by ...
23
votes
10answers
2k views
Code Golf: Zigzag pattern scanning
The Challenge
The shortest code by character count that takes a single input integer N (N >= 3) and returns an array of indices that when iterated would traverse an NxN matrix according to the JPEG ...
28
votes
9answers
1k views
Other ternary operators besides ternary conditional (?:)
The "ternary operator" expression is now almost equivalent to the ternary conditional operator:
condition ? trueExpression : falseExpression;
However, "ternary operator" literally only means that ...
37
votes
14answers
3k views
Code Golf - Banner Generation [closed]
When thanking someone, you don't want to just send them an e-mail saying "Thanks!", you want to have something FLASHY:
Input: THANKS!!
Output:
TTT H H AAA N N K K SSS !!! !!!
T H H A A NNN K K S ...
22
votes
12answers
2k views
Code Golf: Diamond Pattern
The challenge
The shortest code by character count to output a a pattern of diamonds according to the input.
The input is composed of 3 positive numbers representing the size of the diamond and the ...
22
votes
9answers
2k views
Code Golf: Phone Number to Words
Guidelines for code-golf on SO
We've all seen phone numbers that are put into words: 1-800-BUY-MORE, etc.
What is the shortest amount of code you can write that will produce all the possible ...
6
votes
5answers
245 views
Generate all the ways to intersperse a list of lists, keeping each list in order
Given a list of lists like this
[[1,2,3],[a,b,c,d],[x,y]]
generate all permutations of the flattened list, [1,2,3,a,b,c,d,x,y], such that the elements of each sublist occur in the same order.
For ...
29
votes
17answers
3k views
Code Golf: 1x1 black pixel
Recently, I used my favorite image editor to make a 1x1 black pixel (which can come in handy when you want to draw solid boxes in HTML cheaply). Even though I made it a monochrome PNG, it came out to ...
16
votes
15answers
1k views
File Fix-it codegolf (GCJ 2010 1B-A)
Last year (2009), the Google Code Jam featured an interesting problem as the first problem in Round 1B: Decision Tree
As the problem seemed tailored for Lisp-like languages, we spontaneously had an ...
26
votes
9answers
2k views
Code Golf: Code 39 Bar Code
The challenge
The shortest code by character count to draw an ASCII representation of a Code 39 bar code.
Wikipedia article about Code 39: http://en.wikipedia.org/wiki/Code_39
Input
The input ...
1
vote
10answers
228 views
How can this closure test be written in other languages?
I wonder how the following closure test can be written in other languages, such as C/C++ and Java. Can the same result be expected also in Perl, Python, and PHP?
Ideally, we don't need to make a new ...
22
votes
6answers
1k views
Code Golf: Ghost Leg
The challenge
The shortest code by character count that will output the numeric solution, given a number and a valid string pattern, using the Ghost Leg method.
Examples
Input: 3,
"| | | | | | | |
...
13
votes
15answers
1k views
Code Golf: MSM Random Number Generator
The challenge:
The shortest code by character count that will generate a series of (pseudo)random numbers using the Middle-Square Method.
The Middle-Square Method of (pseudo)random number generation ...