January 10, 2012
Got my statement of accomplishment by email for the Machine Learning online course I took in the fall from Stanford’s Professor Andrew Ng. Psyched!! Machine Learning (Online Class) – Statement of Accomplishment(function() { var scribd = document.createElement(“script”); scribd.type = “text/javascript”; scribd.async = true; scribd.src = “http://www.scribd.com/javascripts/embed_code/inject.js”; var s = document.getElementsByTagName(“script”)[0]; s.parentNode.insertBefore(scribd, s); })();
Read the full article →
January 8, 2012
http://projecteuler.net/problem=85 Two good blogs had walkthroughs to this problem – Yacoby’s Wanderings and Key Zero Conversation # euler 85 import math def squares(row, col): return row * (row+1) * col * (col+1) / 4 topLim = 2000000 dist = 2000000 answer = () for r in range(1, 100): for c in range(1, 100): temp = [...]
Read the full article →