Skip to content

Instantly share code, notes, and snippets.

View adabson's full-sized avatar
🔥

Andrew Dabson adabson

🔥
View GitHub Profile
@adabson
adabson / Markov_chain.py
Created February 14, 2012 00:32
Stanford AI class programmed Markov chain
"""
Now that i understand (to some extent):
* Bayes' Rule
* The theorem of total probability
* Markov chains
Im going to write a program to calculate the nth probability of an event in a chain
"""
#Andrew Dabson onitz.net
@adabson
adabson / mysort.py
Created February 12, 2012 22:31
Khan sorting python example
#sorting function
#Andrew Dabson onitz.net
def mysort(list):
for j in range(len(list)): #iterate through the list
b=j #let b be the index of the smallest value
for i in range(j,len(list)): #iterate through the last portion
if(list[i]<list[b]): #..and find the next smallest value
b=i
c=list[j] #swap the ith value with the smallest