Skip to content

ericoj100/Connect-4

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Connect-4

APCSA project public class ConnectFour{ private String[][] board;

//
public ConnectFour(String[][]connect){
    board = connect;
}
//
public void reset() {
    for (int c = 0; c < board.length; c++){
        for(int r = 0; r < board[0].length; r++){
            board[c][r] = ""; 
        }
    } 
} 

}

About

APCSA project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%