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 AddingReversedNumbers
  • Loading branch information
fatosmorina committed May 27, 2017
1 parent 9a9035d commit 4c60bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UVa/AddingReversedNumbers.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

public class AddingReversedNumbers {

static void solve() throws Exception {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int numberOfTestCases = input.nextInt();
while (numberOfTestCases != 0) {
Expand Down

0 comments on commit 4c60bfb

Please sign in to comment.