Rust - WIP run-length-encoding
This commit is contained in:
parent
987720829d
commit
8a765ff317
1 changed files with 2 additions and 2 deletions
|
@ -27,8 +27,8 @@ fn tupleize(inp_vec: Vec<&str>) -> Vec<(char, usize)>{
|
|||
fn tup_convert(inp_tuple: Vec<(char, usize)>) -> Vec<&'static str>{
|
||||
let mut converted: Vec<&'static str> = Vec::new();
|
||||
for i in 0..inp_tuple.len() {
|
||||
let string_converted_element: String = inp_tuple[i].1.to_string() + inp_tuple[i].0.to_string().as_str();
|
||||
let converted_element: &'static str = string_converted_element.as_str();
|
||||
let converted_element: &'static str = inp_tuple[i].1.to_string().as_str() + inp_tuple[i].0.to_string().as_str();
|
||||
// let converted_element: &'static str = string_converted_element;
|
||||
converted.push(converted_element);
|
||||
}
|
||||
return converted;
|
||||
|
|
Loading…
Add table
Reference in a new issue