Skip to content
This repository was archived by the owner on May 19, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 413 Bytes

File metadata and controls

20 lines (16 loc) · 413 Bytes

Quantum LEAD Project

Taeksoo Kwon & Nathan Hagh's project

Description

Java implementation of finding whether a given directed graph is cyclic or acylclic.

Input

Save all input to input.txt in the same folder

First line is the amount of vertices and edges spaced.
Starting from second line are the edges from A to B, directed.

Input Sample

3 4
1 2
2 1
3 1
2 3

Specification

OpenJDK 17