Tagged Questions
The riddles tag has no wiki summary.
103
votes
14answers
5k views
How can “while (i == i) ;” be a non-infinite loop in a single threaded application?
I just got a question that I can't answer.
Suppose you have this loop definition in Java:
while (i == i) ;
What is the type of i and the value of i if the loop is not an infinite loop and the ...
18
votes
38answers
4k views
Programming Riddle: Counting down without subtracting
Ok, goal by example : a command-line app that does this:
Countdown.exe 7
prints 7 6 5 4 3 2 1
No form of subtracting (including use of the minus sign) or string reverse what so ever is allowed.
...
16
votes
21answers
3k views
Programming Riddle: How might you translate an Excel column name to a number?
I was recently asked in a job interview to resolve a programming puzzle that I thought it would be interesting to share. It's about translating Excel column letters to actual numbers, if you recall, ...
11
votes
8answers
1k views
Possible Google Riddle?
My friend was given this free google website optimizer tshirt and came to me to try and figure out what the front logo meant.
t-shirt
So, I have a couple of guesses as to what it means, but I was ...
6
votes
2answers
729 views
Why does Double.NaN equal itself when wrapped in a Double instance?
From this question I learned Double.NaN is not equal to itself.
I was verifying this for myself and noticed this is not the case if you wrap Double.NaN in a Double instance. For example:
public ...
6
votes
7answers
1k views
Are There Any Other Programming Riddles?
Are there any other sources of programming type riddles on the internet?
I started my set of daily programming riddles, jokes, and quotes partly to help myself and my team grown in some technical ...
5
votes
3answers
323 views
Algorithmic riddle: sequence with random access, insertion and remotion
Describe a data structure where:
Any item is indexed by an integral value like in an array
an integer can index a single value
integers used to index items are contiguous: they go from 1 to n ...
5
votes
5answers
477 views
unexpected result when adding to pointer
Someone told me this bit of code prints 29. Why is that?
int *a = 17;
printf("%d", a+3);
3
votes
3answers
291 views
Just for fun - getting started on a tricky PHP logic problem
As a means of improving my skill as a PHP developer I often challenge myself with problems from the site Programming Praxis. 99% of the time I can solve the riddles myself, but I'm jammed on this one ...
2
votes
3answers
170 views
php riddle - interesting result
I have the following code:
<?php
$cups = array();
for($i=0; $i<500; $i++){
$cups[$i] = 0;
}
for($x=1; $x<500; $x++){
for($y=$x; $y<500; $y+=$x){
$cups[$y] = !$cups[$y];
...
2
votes
5answers
242 views
Collection of well defined abstract programming tasks
I'm looking for a site or book or any other source of tiny programming tasks one can implement in preferred language. Would be great if examples are present too. And would be superb if there're people ...
2
votes
3answers
336 views
Riddle: When are three equal dates not equal
Start with three variables, all are System.DateTime.
a: 10/2/2009 2:30:00 PM
b: 10/2/2009 2:30:00 PM
c: 10/2/2009 2:30:00 PM
Compare them to each other.
a=b: True
b=c: True
c=a: True
Ok, we have ...
1
vote
3answers
94 views
Complexity of an old Top Coder riddle: Making a number by inserting +
This is a follow up to my previous question (about an old top coder riddle).
Given a string of digits, find the minimum number of additions required for the string to equal some target number. ...
1
vote
0answers
54 views
Tiling rectangle with fixed size tiles
I have been struggling with finding a convenient solution for the following problem:
Suppose we have a wall of a given size and 4 types of tiles of sizes 4 x 2, 2 x 2, 2 x 1, 1 x 1. There are certain ...
1
vote
2answers
201 views
Riddle: Spot the serious bug in this bubble sort implementation
(No, this isn't a homework assignment, I just found the bug and thought it might be useful to share it here)
import java.util.List;
public class BubbleSorter {
public <T extends ...
1
vote
3answers
1k views
Probability riddle: 2 envelopes, switch or keep? [closed]
You are shown two envelopes and told that they both contain money, one twice as much as the other. You select one of them at random - it contains $100. Now you are given the choice to either keep the ...
0
votes
4answers
419 views
C# riddle : implement interface
UPDATE :
This question is not homework. And not waterproof apparantly...
I wanted a discussion about internal representation.
Of course : the add1000 ought to add 1000.
**Please answer in the ...