Files
2023-11-16 16:03:51 +01:00

13 lines
154 B
Plaintext

Graph g;
ArrayList<int[]> edges;
boolean[] vis;
void setup() {
size(1000, 1000);
frameRate(60);
background(255);
test();
edges = bfs(0, 6);
}