OCW

[youtube]http://youtu.be/hGQw3KJ7i6Q[/youtube] Lecture 13: Some Basic Probability and Plotting Data

Continue reading about Lec 13 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

Lecture 10: Hashing and Classes [youtube]http://youtu.be/pjLbxB9TXJs[/youtube]

Continue reading about Lec 10 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

Lecture 9: Memory and Search Methods [youtube]http://youtu.be/6wTuOMgTrU4[/youtube]  

Continue reading about Lec 9 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

Lecture 8: Efficiency and Order of Growth [youtube]http://youtu.be/GmkRmETGghw[/youtube]

Continue reading about Lec 8 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

7: Lists and Mutability, Dictionaries, Introduction to Efficiency import math #Get baseinputOK = Falsewhile not inputOK:    base = input(‘Enter base: ‘)    if type(base) == type(1.0) : inputOK = True    else: print(‘Error. Base must be floating point number.’) #Get HeightinputOK = Falsewhile not inputOK:    height = input(‘Enter height: ‘)    if type(height) […]

Continue reading about Lec 7 | MIT 6.00 Introduction to Computer Science and Programming, Fall 2008