Maintenance moved to Monday 17.3. at 13:00. ETA 60 - 90 minutes.
package fi.utu.tech; import java.util.function.Function; /** * interface to return method "neliöi" to return a squared number */ public interface neliöijä { Function<Integer, Integer> neliöi = luku -> luku*luku; }