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>
9 lines
140 B
Java
9 lines
140 B
Java
package com.hithomelabs.clients.Benchmarks;
|
|
|
|
public interface Sortable<E> {
|
|
|
|
public E[] getArray();
|
|
|
|
public String getOrdering();
|
|
}
|