W7D5

Lists, Stacks, and Queues Lecture Notes

Assessment Prep

Empty Learning Objectives

Filled out Learning Objectives

Approaching Future Assessment Tips on VS Code Problems

  1. Read the README.md CAREFULLY.
  1. Have an node terminal open for testing little bits of code
  1. Read the problem statement CAREFULLY and make bulletpoints that you can use as a checklist to make sure you solve the problem the way we expect you to solve it.
  1. Open up the spec file for side by side with the problem file and skim through the spec file to see what the problem is requiring you to do
  1. Test your code using examples!
  1. Run the test! Use the command to run the code specified.

Other tips: - Walk through your code with a small, condensed example if you get stuck. You may see the problem when you walk through your code using comments to the side and replacing values. Basically, execute the code like how you expect the computer to execute it using a specific input. - Use console.log’s by guessing what should be logged first BEFORE running the code and comparing it with what’s actually logged

Format of Assessment