Skip to content

Instantly share code, notes, and snippets.

View JenniferShola's full-sized avatar

Jennifer Shola JenniferShola

View GitHub Profile
@JenniferShola
JenniferShola / DatabaseViewer.java
Created July 9, 2013 01:13
This is an assignment I did for CS 108 at Stanford. The instructors provided the bare, very bare, backbone for the assignment (MyDB.java, the default Sudoku grids and stringToGrid/parsing functions in Sudoku.java). This program is a Sudoku solver interface that prints out the puzzle, the solution, the number of available solutions and the time e…
package assign3;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
@SuppressWarnings("serial")
public class DatabaseViewer extends JFrame implements ActionListener {