CSC 448 Spring 2020 Schedule

Table of contents

  1. Syllabus
  2. Schedule
  3. Technology
  4. Project
  5. Deadlines
  6. Corrections

Corrections

Disclaimer: This page is manually updated manually, so please check the last updated date.

Last updated date: 4/8/20

Lab 1

4/8/20

The loop stub that was provided was not correct. It has been changed from:

def frequency_table(text,k):
    freq_map = {}
    n = len(text)
    for i in range(n-k):
    ...

To

def frequency_table(text,k):
    freq_map = {}
    n = len(text)
    for i in range(n-k+1):

The autograder now expects you to correct this problem. If you have already received credit for this, it is up to you as to whether you need to resubmit, but I recommend you do so because then you have the correct solution.