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
Raw Normal View History

2019-10-09 11:36:56 +00:00
package test;
@FunctionalInterface
public interface SumFunction {
long sum(int[] nums) throws Exception;
}