Browse Source

fix return type of function

This corrects a typing error, as 64 is not a valid type in Rust.
pull/2475/head
Nik 1 year ago committed by Niccolò Primo
parent
commit
0ef489334e
  1. 2
      subjects/partial_sums/README.md

2
subjects/partial_sums/README.md

@ -40,7 +40,7 @@ parts_sums(&[1, 2, 3, 4, 5]) // == [15, 10, 6, 3 ,1, 0]
### Expected Result
```rs
pub fn parts_sums(arr: &[u64]) -> Vec<64>{
pub fn parts_sums(arr: &[u64]) -> Vec<u64>{
}
```

Loading…
Cancel
Save