mirror of
				https://github.com/theoludwig/programming-challenges.git
				synced 2025-09-11 23:11:21 +02:00 
			
		
		
		
	style: fix editorconfig linting
This commit is contained in:
		
							
								
								
									
										2
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -8,6 +8,8 @@ npm-debug.log*
 | 
			
		||||
# production
 | 
			
		||||
build
 | 
			
		||||
__pycache__
 | 
			
		||||
obj
 | 
			
		||||
bin
 | 
			
		||||
 | 
			
		||||
# testing
 | 
			
		||||
coverage
 | 
			
		||||
 
 | 
			
		||||
@@ -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 + "!");
 | 
			
		||||
		}
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -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 + "!");
 | 
			
		||||
		}
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user