Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 313 Bytes

notes.md

File metadata and controls

15 lines (11 loc) · 313 Bytes

Python

  def test():
    print 'hello''

Topics

  • Heavy use of dictionaries
  • Data-oriented
  • Memoization (lookup tables)
  • Heuristics

The first step is to express all the data in dictionaries. This includes replacing logic by tables, in this case the table columns are dictionary keys.