The sequence of Hermite numbers is defined as
         h[0] = 1,  h[1] = 0, and h[n] = -2*(n-1)*h[n-2].
  1. Draw a flowchart for the algorithm to compute a list of the first 100 Hermite numbers.
  2. Give the corresponding Python code for this algorithm.