Skip to content

Commit 2de19bd

Browse files
committed
Java Algorithm
1 parent c20b610 commit 2de19bd

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

BOJ_JAVA/src/SWEA/Solution_1949.java

-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ private static void DFS(int x, int y, int h, int l, int cnt) {
3737
}
3838
}
3939

40-
4140
private static void Solution() {
4241
for (int i = 0; i < N; i++) {
4342
for (int j = 0 ;j < N; j++) {
@@ -50,8 +49,6 @@ private static void Solution() {
5049
}
5150
}
5251

53-
54-
5552
private static void input() throws IOException {
5653
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
5754
StringBuilder sb = new StringBuilder();
@@ -65,7 +62,6 @@ private static void input() throws IOException {
6562
graph = new int[N][N];
6663
visited = new boolean[N][N];
6764

68-
6965
for (int i = 0 ; i < N; i++) {
7066
StringTokenizer st = new StringTokenizer(br.readLine());
7167
for (int j = 0; j < N; j++) {
@@ -80,7 +76,6 @@ private static void input() throws IOException {
8076
}
8177
System.out.println(sb.toString());
8278
br.close();
83-
8479
}
8580

8681
public static void main(String[] args) throws Exception {

0 commit comments

Comments
 (0)