Skip to content

Commit b687b3d

Browse files
committed
feat(12166): read number of test cases
1 parent aa135e7 commit b687b3d

File tree

1 file changed

+2
-1
lines changed
  • src/main/java/com/lzw/solutions/uva/p12166

1 file changed

+2
-1
lines changed

src/main/java/com/lzw/solutions/uva/p12166/Main.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ public class Main {
1010
private static final PrintWriter out = new PrintWriter(System.out, true);
1111

1212
private static void solve() throws IOException {
13-
// your code here
13+
int t = Integer.parseInt(in.readLine());
14+
1415
}
1516

1617
public static void main(String[] args) throws IOException {

0 commit comments

Comments
 (0)