diff options
Diffstat (limited to 'candy/src')
| -rw-r--r-- | candy/src/main.rs | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/candy/src/main.rs b/candy/src/main.rs new file mode 100644 index 0000000..e2fe56c --- /dev/null +++ b/candy/src/main.rs @@ -0,0 +1,18 @@ +fn main() { +    println!("Hello, world!"); +} + + +struct Solution {} +impl Solution { +    pub fn candy(ratings: Vec<i32>) -> i32 { +        let result = Vec::with_capacity(ratings.len()); + +        let mut candy = 1; + +        while let Some(s)= ratings.iter().enumerate() +            .fold(i32::MAX, |acc, (i,v)| if v < acc && {v}) + +        result.iter().sum::<i32>() +    } +}  | 
