|
Rebus Generator |
|
|
|
Optimal Ghost |
|
|
|
BitVector Genealogy |
|
|
|
To be precise: if the integers from 1 to 999,999,999 are expressed in words (omitting spaces, 'and', and punctuation[1]), and sorted alphabetically so that the first six integers are
then reading top to bottom, left to right, the 28th letter completes the spelling of the integer "eighteenmillion".
The 51 billionth letter also completes the spelling of an integer. Which one, and what is the sum of all the integers to that point? [1] For example, 911,610,034 is written "ninehundredelevenmillionsixhundredtenthousandthirtyfour"; 500,000,000 is written "fivehundredmillion"; 1,709 is written "onethousandsevenhundrednine". |
|
Sling Blade Runner |
|
Data provided by MovieLens at the University of Minnesota. |
|
Lucky Sevens |
|
|
|
Decrypting the Two-Time Pad (hard!) |
|
|
|
Landmarks Web App |
|
|
|
ASCII A-maze-ment |
|
|
|
Queens & Knights |
|
This puzzle was created in April '02 and retired in June '04. |
|
Add-A-Gram | ||
|
|
|
The Mystery M Function |
|
(defun m (i j k) (cond ((= i 0) (1+ k)) ((and (= i 1) (= k 0)) j) ((and (= i 2) (= k 0)) 0) ((= k 0) 1) (t (m (1- i) j (m i j (1- k))))))
eval (m 4 4 4) => ?
This puzzle was created in December ‘01 and retired in April ’03. |
|
Nine 9s |
|
This puzzle was created in December '01 and retired in August '03. |
|
Instant Search |
|
Please submit a WAR file, configuration instructions, your source code, and any comments on your approach. Your application will be tested with Tomcat on Sun's 64-bit J2SE and a recent version of Firefox. Resources XMLHttpRequest, StAX, Apache Tomcat, Mozilla Firefox, Eclipse
|
|
Roll Your Own Chat Server |
|
The server responds to all commands with either: Here's a transcript of a sample session where a user named "alice" joins a chatroom called #news after connecting. C indicates the line was sent by the client, S indicates it was sent by the server (end of line indicates CRLF was sent):
|
|
The O'Hare Affair |
|
java -jar OHareAffair.jar YYYY-MM-DD airportCode
|
| Strawberry Fields | ||||||
|
Write a program that chooses the best number of greenhouses to build, and their locations, so as to enclose all the strawberries as cheaply as possible. Heuristic solutions that may not always produce the lowest possible cost will be accepted: seek a reasonable tradeoff of efficiency and optimality. Your program must read a small integer 1 ≤ N ≤ 10 representing the maximum number of greenhouses to consider, and a matrix representation of the field, in which the '@' symbol represents a strawberry. Output must be a copy of the original matrix with letters used to represent greenhouses, preceded by the covering's cost. Here is an example input-output pair:
In this example, the solution cost of $90 is computed as (10+8*3) + (10+7*3) + (10+5*3).
Run your program on the 9 sample inputs found in this file and report the total cost of the 9 solutions found by your program, as well as each individual solution. |
|
Palindromic Pangram |
|
This puzzle was created in 2004 and retired in January 2009. |
|
Tour the T | |
|
Given a T timetable, write a program to compute the quickest route that passes through every station on the Red, Blue, Green, and Orange Lines, ending at Kendall Square.
Details
For example, if part of your route includes changing from the Green Line to the Red Line at Park Street, you should assume that you will wait 5 minutes for the Red Line train to show up. You should also assume that the wait time is the same for all trains (e.g. you will wait 5 minutes for the Red Line to Braintree, Ashmont, or Alewife).
0:00:00: Arrive Kendall/MIT Of course, your code should not be in any way specific to the Boston subway topology, but generalize easily to other data files, representing, say, the New York subway.
|
|
Word Rectangle |
|
|
|
Setless SET® |
|
This puzzle was created in December '05 and retired in January '07. |