init: 初始化rust项目

This commit is contained in:
2023-12-12 18:40:24 +08:00
commit 21276cc6d4
16 changed files with 2676 additions and 0 deletions

24
template.rs Normal file
View File

@@ -0,0 +1,24 @@
/**
* [__PROBLEM_ID__] __PROBLEM_TITLE__
*
* __PROBLEM_DESC__
*/
pub struct Solution {}__EXTRA_USE__
// problem: __PROBLEM_LINK__
// discuss: __DISCUSS_LINK__
// submission codes start here
__PROBLEM_DEFAULT_CODE__
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test___PROBLEM_ID__() {
}
}