Tagged Questions
63
votes
129answers
15k views
Factorial Algorithms in different languages
I want to see all the different ways you can come up with, for a factorial subroutine, or program. The hope is that anyone can come here and see if they might want to learn a new language.
Ideas:
...
20
votes
14answers
948 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 ...
9
votes
4answers
311 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 ...
9
votes
6answers
726 views
Various ways of implementing bubble sort?
How should I implement the classic bubble sort algorithm? I'd particularly like to see a C++ implementation, but any language (even pseudocode) would be helpful.
P.S. Not a homework.
7
votes
16answers
894 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. ...
7
votes
10answers
2k views
Rosetta Stone: reservoir random sampling algorithm
I've been killing some time with a little puzzle project -- writing the algorithm described in Knuth for random sampling of a population without knowing the size of the population in advance. So far ...
6
votes
5answers
183 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 ...
3
votes
10answers
1k views
Find SmallestInt : Smallest integer greater than or equal to n that contains exactly k distinct digits(given values of n and k)
I found this on the internet.
It looks good an interview question.
I guess I got the working correct but programatically I haven't tried it.
SmallestInt
You are given an integer n. Return ...
2
votes
8answers
993 views
Algorithm: iterate over 2 variables in order of descending product
Note: This is NOT homework.
Hi,
It's easy to iterate over two variables and print their product like so:
for a in range(1,100):
for b in range(1,100): # or range(a,100) to prevent duplicates
...
1
vote
5answers
380 views
What's your take on this little input processing task?
I came across a little problem that looks very easy but requires a bit more thought than I first assumed. It can also be solved in many different ways and, I think, would be a perfect interview ...