1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01:00

style: fix editorconfig linting

This commit is contained in:
Divlo 2021-06-25 11:27:23 +02:00
parent 8a41cb67f0
commit b098e04cdc
No known key found for this signature in database
GPG Key ID: 185ED2F15F104E52
3 changed files with 10 additions and 8 deletions

2
.gitignore vendored
View File

@ -8,6 +8,8 @@ npm-debug.log*
# production
build
__pycache__
obj
bin
# testing
coverage

View File

@ -3,10 +3,10 @@ import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
String line;
Scanner scanner = new Scanner(System.in);
while(scanner.hasNextLine()) {
line = scanner.nextLine();
Scanner scanner = new Scanner(System.in);
while(scanner.hasNextLine()) {
line = scanner.nextLine();
System.out.println("Hello, " + line + "!");
}
}
}
}

View File

@ -3,10 +3,10 @@ import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
String line;
Scanner scanner = new Scanner(System.in);
while(scanner.hasNextLine()) {
line = scanner.nextLine();
Scanner scanner = new Scanner(System.in);
while(scanner.hasNextLine()) {
line = scanner.nextLine();
System.out.println("Hello, " + line + "!");
}
}
}
}