import java.util.*; public class TRAII_24_X2_skeleton implements TRAII_24_X2 { // OWN user-id here /** * SELF-EVALUTION HERE * * */ /** * Measures the speed (time) of the contains() -operation of given * Collection. Result is a typical time of the contains() operation in nanoseconds * in a case that the element is not found from the collection. * Does not change the collection (does not add or remove elements). * * @param C collection under test * @return typical time of a contains() operaation in nanoseconds */ @Override public long containsTime(Collection C) { // TODO return 9999999L; } }