Rust - WIP run-length-encoding

This commit is contained in:
anthony.cicchetti 2017-05-12 14:01:47 -04:00
parent 987720829d
commit 8a765ff317

View file

@ -27,8 +27,8 @@ fn tupleize(inp_vec: Vec<&str>) -> Vec<(char, usize)>{
fn tup_convert(inp_tuple: Vec<(char, usize)>) -> Vec<&'static str>{ fn tup_convert(inp_tuple: Vec<(char, usize)>) -> Vec<&'static str>{
let mut converted: Vec<&'static str> = Vec::new(); let mut converted: Vec<&'static str> = Vec::new();
for i in 0..inp_tuple.len() { 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 = inp_tuple[i].1.to_string().as_str() + inp_tuple[i].0.to_string().as_str();
let converted_element: &'static str = string_converted_element.as_str(); // let converted_element: &'static str = string_converted_element;
converted.push(converted_element); converted.push(converted_element);
} }
return converted; return converted;