Rust - WIP run-length-encoding
This commit is contained in:
parent
e27a4a71cc
commit
987720829d
7 changed files with 22 additions and 2 deletions
4
rust/test/Cargo.lock
generated
Normal file
4
rust/test/Cargo.lock
generated
Normal file
|
@ -0,0 +1,4 @@
|
|||
[root]
|
||||
name = "testing_crate"
|
||||
version = "0.1.0"
|
||||
|
10
rust/test/Cargo.toml
Normal file
10
rust/test/Cargo.toml
Normal file
|
@ -0,0 +1,10 @@
|
|||
[package]
|
||||
name = "testing_crate"
|
||||
version = "0.1.0"
|
||||
authors = ["anthony.cicchetti <anthony.cicchetti@ert.com>"]
|
||||
|
||||
[dependencies]
|
||||
|
||||
[[bin]]
|
||||
name = "testing_crate"
|
||||
path = "main.rs"
|
Binary file not shown.
Binary file not shown.
|
@ -26,8 +26,9 @@ fn tupleize(inp_vec: Vec<&str>) -> Vec<(char, usize)>{
|
|||
// Converts tuple into a vector of strings
|
||||
fn tup_convert(inp_tuple: Vec<(char, usize)>) -> Vec<&'static str>{
|
||||
let mut converted: Vec<&'static str> = Vec::new();
|
||||
for i in inp_tuple.len().iter() {
|
||||
let converted_element: &'static str = inp_tuple[i].1.as_str() + inp_tuple[i].0.as_str();
|
||||
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();
|
||||
converted.push(converted_element);
|
||||
}
|
||||
return converted;
|
||||
|
|
0
rust/test/target/debug/.cargo-lock
Normal file
0
rust/test/target/debug/.cargo-lock
Normal file
|
@ -0,0 +1,5 @@
|
|||
C:\Users\ACicchetti\exercism\rust\test\target\debug\deps\testing_crate-b92142a9c79df8a4.exe: main.rs
|
||||
|
||||
C:\Users\ACicchetti\exercism\rust\test\target\debug\deps\testing_crate-b92142a9c79df8a4.d: main.rs
|
||||
|
||||
main.rs:
|
Loading…
Add table
Reference in a new issue