Submission Checklist
- 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
- class name matches file name (
ClassName.java
) - method and variable names are Camel Case (methodName) – the first letter of each word after the first is uppercase
- package name is all lowercase and starts with
package com.gradescope.
- set your methods as
static
if instructed to do so