CompetitiveProgramming/src/bin/lc-2454.rs

9 lines
149 B
Rust

struct Solution {}
impl Solution {
pub fn second_greater_element(nums: Vec<i32>) -> Vec<i32> {
let n = nums.len();
}
}
fn main() {}