Skip to content

Commit

Permalink
Replace static void solve() throws Exception with public static void …
Browse files Browse the repository at this point in the history
…main(String[] args) at NumberingRoads
  • Loading branch information
fatosmorina committed May 27, 2017
1 parent ce08469 commit 7049ef7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions UVa/NumberingRoads.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,13 @@
* Case 2: impossible
*/


//https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2823

import java.util.Scanner;

public class NumberingRoads {

static void solve() throws Exception {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int caseNumber = 1;
while (true) {
Expand Down

0 comments on commit 7049ef7

Please sign in to comment.