This repository acts as a personal archive for my solutions to EdX course *Data Structures and Software Design* from PennX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
417 B

  1. import java.util.List;
  2. /*
  3. * SD2x Homework #10
  4. * This is the empty implementation of the ClassesDataSource.
  5. * Do not change the signature of the method.
  6. * You do not need to implement or submit this code.
  7. */
  8. public interface ClassesDataSource {
  9. /*
  10. * Returns a List of the names of the classes
  11. * that are being taken by the specified student.
  12. */
  13. public List<String> getClasses(String studentName) ;
  14. }