2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
truncate_sentence.rs 991 Bytes
一键复制 编辑 原始数据 按行查看 历史
royce li 提交于 2021-12-13 17:25 . 改用Rust
struct Solution;
// impl Solution {
// pub fn truncate_sentence(s: String, k: i32) -> String {
// let mut ret = String::new();
// let mut start = 0;
// let mut count = 0;
// for (index, c) in s.chars().enumerate() {
// if c == ' ' {
// if count >= k {
// break;
// }
// ret.push_str(&s[start..index]);
// start = index;
// count += 1;
// }
// }
// if count < k {
// ret.push_str(&s[start..]);
// }
// return ret;
// }
// }
impl Solution {
pub fn truncate_sentence(s: String, k: i32) -> String {
let mut ret = String::new();
let mut count = 0;
for c in s.split_whitespace() {
if count < k {
if count != 0 {
ret.push_str(" ");
}
ret.push_str(c);
count += 1;
}
}
return ret;
}
}
fn main() {
let test = String::from("Hello how are you Contestant");
println!("{}", Solution::truncate_sentence(test, 4));
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助