projects
/
rust-101.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
part10: typo
[rust-101.git]
/
workspace
/
src
/
part06.rs
diff --git
a/workspace/src/part06.rs
b/workspace/src/part06.rs
index 15b55d25c1af07066b59699f7b19df48bb92216d..04a08478f87d428dc75fadc6c1111b9fabce8356 100644
(file)
--- a/
workspace/src/part06.rs
+++ b/
workspace/src/part06.rs
@@
-27,6
+27,7
@@
fn vec_min(v: &Vec<BigInt>) -> Option<BigInt> {
let mut min: Option<BigInt> = None;
// If `v` is a shared borrowed vector, then the default for iterating over it is to call `iter`, the iterator that borrows the elements.
for e in v {
+ let e = e.clone();
unimplemented!()
}
min