Difference between revisions of "CompSciWeek2"

From Predictive Chemistry
Jump to: navigation, search
(Created page with "(Wed. only) Algorithms, Continued ===================== * Beginning Python, Chapter 5 * Algorithms, Chapters 1-3 ** ignore python 'Class' for now * Complexity notation, O(n), et…")
 
Line 1: Line 1:
 
(Wed. only)
 
(Wed. only)
   
Algorithms, Continued
+
== Algorithms, Continued ==
=====================
+
 
* Beginning Python, Chapter 5
 
* Beginning Python, Chapter 5
 
* Algorithms, Chapters 1-3
 
* Algorithms, Chapters 1-3
Line 8: Line 8:
 
* Complexity notation, O(n), etc.
 
* Complexity notation, O(n), etc.
 
* Loop Complexity
 
* Loop Complexity
 
 
* First algorithms (Horner, Euclid, Babylonian)
 
* First algorithms (Horner, Euclid, Babylonian)
 
* Code walk-through for a poorly designed Euclid''s algo.
 
* Code walk-through for a poorly designed Euclid''s algo.

Revision as of 11:45, 1 September 2014

(Wed. only)

Algorithms, Continued

  • Beginning Python, Chapter 5
  • Algorithms, Chapters 1-3
    • ignore python 'Class' for now
  • Complexity notation, O(n), etc.
  • Loop Complexity
  • First algorithms (Horner, Euclid, Babylonian)
  • Code walk-through for a poorly designed Euclids algo.
  • The KISS, DRY, and incremental principles
  • Loading python modules