Added base.rs for basic rust file

This commit is contained in:
2022-05-29 23:41:25 +02:00
parent e1bc9a42a2
commit 5e31032955

15
base.rs Normal file
View File

@@ -0,0 +1,15 @@
use proconio::input;
fn solve(tc: u32){
}
fn main() {
input!{
t: u32,
};
for tc in 1..=t {
solve(tc);
}
}