Skip to content

Instantly share code, notes, and snippets.

View stanleydc's full-sized avatar

Dan Stanley stanleydc

  • San Francisco, CA
View GitHub Profile

Keybase proof

I hereby claim:

  • I am stanleydc on github.
  • I am dstanley (https://keybase.io/dstanley) on keybase.
  • I have a public key ASBPNJMAzNCFGUnMP4AEpARw4YjVX0z929Up7DjZZLSBXQo

To claim this, I am signing this object:

import java.util.*;
public class Solution {
static boolean isPrimeNumber(int number){
for ( int i = 2; i <= number/2; i++ ){
if( number%i == 0 ){
return false;
}
}
import java.util.*;
public class Solution {
private static String[][] board =
{{ "A", "T", "E", "E" },
{ "A", "P", "Y", "O" },
{ "T", "I", "N", "U" },
{ "E", "D", "S", "E" }};
private static boolean[][] visited =
{{false,false,false,false},