Princeton1/module5/src/main/java/com/hithomelabs/princeton1/module5/ComparableSort.java
hitanshu310 8c47ac248c
All checks were successful
sample gradle build and test / build (push) Successful in 52s
Adding benchmarking code (#17)
Reviewed-on: #17
Reviewed-by: kruti <krutis0201@gmail.com>
Co-authored-by: hitanshu310 <hitanshu98@gmail.com>
Co-committed-by: hitanshu310 <hitanshu98@gmail.com>
2025-02-19 19:53:59 +00:00

8 lines
110 B
Java

package com.hithomelabs.princeton1.module5;
public interface ComparableSort<E> {
void sort(E[] arr);
}