All checks were successful
sample gradle build and test / build (push) Successful in 52s
Reviewed-on: #17 Reviewed-by: kruti <krutis0201@gmail.com> Co-authored-by: hitanshu310 <hitanshu98@gmail.com> Co-committed-by: hitanshu310 <hitanshu98@gmail.com>
8 lines
110 B
Java
8 lines
110 B
Java
package com.hithomelabs.princeton1.module5;
|
|
|
|
public interface ComparableSort<E> {
|
|
|
|
void sort(E[] arr);
|
|
|
|
}
|