This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
PF3/hw1/Ex1/src/test/SumFunction.java

7 lines
109 B
Java

package test;
@FunctionalInterface
public interface SumFunction {
long sum(int[] nums) throws Exception;
}