Watch
1
0
Fork
You've already forked advent-of-code
0
advent-of-code/2022/src/lib.rs
2022-12-07 23:05:00 -08:00

7 lines
157 B
Rust

pub fn split_lines(s: &str) -> Vec<&str> {
s.trim_end().split('\n').collect()
}
pub fn split_words(s: &str) -> Vec<&str> {
s.split(' ').collect()
}