This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPECIFICATION: | |
# | |
# check_sudoku() determines whether its argument is a valid Sudoku | |
# grid. It can handle grids that are completely filled in, and also | |
# grids that hold some empty cells where the player has not yet | |
# written numbers. | |
# | |
# First, your code must do some sanity checking to make sure that its | |
# argument: | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class calendar { | |
// initialize static scanned | |
public static Scanner input = new Scanner(System.in); | |
public static void main(String[] args) { | |
int month = getMonth(); | |
int year = getYear(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Please write complete compilable code. | |
Your class should be named Solution | |
Read input from standard input (STDIN) and print output to standard output(STDOUT). | |
For more details, please check http://www.interviewstreet.com/recruit/challenges/faq/view#stdio | |
*/ | |
import java.util.Scanner; | |
public class Solution { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Please write complete compilable code. | |
Your class should be named Solution | |
Read input from standard input (STDIN) and print output to standard output(STDOUT). | |
For more details, please check http://www.interviewstreet.com/recruit/challenges/faq/view#stdio | |
*/ | |
import java.util.Scanner; | |
public class Solution { |
NewerOlder