diff --git a/Day5.java b/Day5.java index 0a0dd7f..f55da96 100644 --- a/Day5.java +++ b/Day5.java @@ -2,7 +2,7 @@ public class Solution { private static final Scanner scanner = new Scanner(System.in); - public static void main(String[] args) { + public static void main(String... args) { int n = scanner.nextInt(); scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); diff --git a/README.md b/README.md index e766090..ed963d7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# HackerRankDay5 +# HackerRankDay5 challenges My answers to 30 Days of Code with HackerRank - Solution JavaScript, Java & VB.Net
The answers cannot be run by themselves but contain a solution (tested) to the activity given by HackerRank Website
Day 5: Loops