Submission Checklist

  1. class name is in Proper Case (ClassName) – the first letter of every word, inclusing the first word, is uppercase while the remaining letters are lowercase
  2. class name matches file name (ClassName.java)
  3. method and variable names are Camel Case (methodName) – the first letter of each word after the first is uppercase
  4. package name is all lowercase and starts with package com.gradescope.
  5. set your methods as static if instructed to do so