Skip to content

Instantly share code, notes, and snippets.

View NWuensche's full-sized avatar

NWuensche NWuensche

View GitHub Profile
@NWuensche
NWuensche / SearchWithStreams.java
Last active July 24, 2021 05:30
DFS and BFS in Java 8 style
import com.sun.istack.internal.NotNull;
import com.sun.istack.internal.Nullable;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.function.Predicate;
import java.util.stream.Collectors;
/**
* @author Niklas Wünsche