package fr.uge.code.camp;

import java.io.*;
import java.util.*;
import java.nio.file.Path;

public class Session4 {
	public static int bricks(Path path) throws IOException {
		throw new UnsupportedOperationException("Not implemented yet");
	}

	public record Box(long x, long y, long z) {
		public static Box ofString(String line) {
			var coords = Arrays.stream(line.split(",")).map(Long::valueOf).toList();
			return new Box(coords.get(0), coords.get(1), coords.get(2));
		}
	}

	public static Set<Box> junctionBoxes(Path path) throws IOException {
		throw new UnsupportedOperationException("Not implemented yet");
	}


	public static int saveTheUniverse(long damage, String program) {
		throw new UnsupportedOperationException("Not implemented yet");
	}

	public static String nestingDepth(String sequence) {
		throw new UnsupportedOperationException("Not implemented yet");
	}
}