Manual autograder templates currently expect a predefined list of files to be uploaded where their names match exactly. This is a problem if we expect MyClass.java and a student uploads myclass.JAVA, for example. We want to compare files strictly in lowercase to prevent false negatives. Your implementation should be robust enough to eventually handle converting wildcards to lowercase without much modification.
Manual autograder templates currently expect a predefined list of files to be uploaded where their names match exactly. This is a problem if we expect
MyClass.java
and a student uploadsmyclass.JAVA
, for example. We want to compare files strictly in lowercase to prevent false negatives. Your implementation should be robust enough to eventually handle converting wildcards to lowercase without much modification.