Categories
Archives
Blogroll
Meta
Monthly Archives: December 2009
Decking the halls with fibonaccis
Today I’d like to show off how awesome the Haskell language is with a few example programs. This blog is valid Literate Haskell, which means that you should be able to copy this entire text, save it with a .lhs … Continue reading
An example of how to solve a basic recurrence
The time complexity of most recursive algorithms can be represented by a mathematical function called a recurrence. An example of such function is $latex T(n) = T(\frac{n}{2}) + 1$ As you can see, solving for some n involves solving for … Continue reading
Test Post
This is only a test post. I downloaded some desktop blogging software and wanted to test it out… This post is the result of said test.
Posted in Uncategorized
Leave a comment