package fr.uge.code.camp;

import java.io.IOException;
import java.nio.file.Path;
import java.util.List;
import java.util.Set;

public class SessionE26 {

	public static int longestInterval(List<Integer> list) {
		throw new UnsupportedOperationException("Not implemented yet");
	}

	public record Indices(int i, int j) {
	}

	/*** Si vous bénéficiez d'un tiers-temps, ne faites pas cet exercice ***/
	public static Set<Indices> twoSum(int[] values, int target) {
		throw new UnsupportedOperationException("Not implemented yet");
	}

	public static List<Integer> bingo(Path path) throws IOException {
		throw new UnsupportedOperationException("Not implemented yet");
	}
}
