Section outline

  • Prep

    • until including Chapter 2.3

    Agenda

      • consider the following function
        • input: array of integers
        • output: minimum of these numbers
      • write the pseudocode for your algorithm
      • implement it in Python
      • calculate the runtime
        • best case
        • worst case
      • is your function iterative or recursive?
        • how would you convert it to an iterative or recursive function?