Skip to content

Instantly share code, notes, and snippets.

View mdakram28's full-sized avatar
💻
Coding and Hackathons

Akram Ansari mdakram28

💻
Coding and Hackathons
View GitHub Profile
import java.io.*;
import java.util.ArrayList;
public class Computer extends Player {
int t=0;
Node begin = new Node("000000000",0,this);
Node current = begin;
import java.util.ArrayList;
public class Layer {
ArrayList<Node> nodes = new ArrayList<Node>();
int layerNum = 0;
public Layer(int Num){
layerNum = Num;
}