Skip to content

Commit 31789b8

Browse files
committed
feat(codeforces): implement solution for p2190A
1 parent 8ea9c85 commit 31789b8

File tree

2 files changed

+7
-1
lines changed
  • src/main
    • java/com/lzw/solutions/codeforces/p2190A
    • resources/codeforces/p2190A

2 files changed

+7
-1
lines changed

src/main/java/com/lzw/solutions/codeforces/p2190A/Main.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ public class Main {
1919
}
2020

2121
void solve() throws IOException {
22-
22+
int t = Integer.parseInt(in.readLine());
23+
while (t-->0){
24+
int n = Integer.parseInt(in.readLine());
25+
String s = in.readLine();
26+
assert (s.length() == n);
27+
System.out.println(s);
28+
}
2329
}
2430

2531
void close() throws IOException {

0 commit comments

Comments
 (0)