CompetitiveProgramming/src/bin/lc-2454.rs

9 lines
149 B
Rust
Raw Normal View History

2023-12-19 16:32:15 +00:00
struct Solution {}
impl Solution {
pub fn second_greater_element(nums: Vec<i32>) -> Vec<i32> {
let n = nums.len();
}
}
fn main() {}