From d1e4e29f31e0ffa09de1287115b4921cf3a18ca4 Mon Sep 17 00:00:00 2001 From: Mann9939 <72181425+Mann9939@users.noreply.github.com> Date: Thu, 1 Oct 2020 10:20:02 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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
From 54942d74a0b2f86f043e9dca8a1b2b8ba0ccd775 Mon Sep 17 00:00:00 2001 From: Mann9939 <72181425+Mann9939@users.noreply.github.com> Date: Thu, 1 Oct 2020 10:22:00 +0530 Subject: [PATCH 2/2] Update Day5.java --- Day5.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])?");