From 4b0a6a01b051a4ebfbc17661d14cb23fe4f275fb Mon Sep 17 00:00:00 2001 From: Orangerot Date: Thu, 27 Jun 2024 11:30:16 +0200 Subject: Initial commit --- find-the-highest-altitude/Cargo.toml | 8 ++++++++ find-the-highest-altitude/src/main.rs | 17 +++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 find-the-highest-altitude/Cargo.toml create mode 100644 find-the-highest-altitude/src/main.rs (limited to 'find-the-highest-altitude') diff --git a/find-the-highest-altitude/Cargo.toml b/find-the-highest-altitude/Cargo.toml new file mode 100644 index 0000000..648fce4 --- /dev/null +++ b/find-the-highest-altitude/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "find-the-highest-altitude" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/find-the-highest-altitude/src/main.rs b/find-the-highest-altitude/src/main.rs new file mode 100644 index 0000000..82fac4d --- /dev/null +++ b/find-the-highest-altitude/src/main.rs @@ -0,0 +1,17 @@ +fn main() { + println!("Hello, world!"); +} + +struct Solution; + +impl Solution { + pub fn largest_altitude(gain: Vec) -> i32 { + let mut altitude = 0; + let mut result = 0; + for x in gain { + altitude += x; + result = result.max(altitude); + } + result + } +} -- cgit v1.2.3