1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01:00

feat(solutions): add sorting-algorithms/rust/function

This commit is contained in:
Divlo 2022-03-08 09:49:09 +01:00
parent 6d12750ea1
commit a18d9045dd
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# sorting-algorithms/rust/function
Created by [@Divlo](https://github.com/Divlo) on 8 March 2022.

View File

@ -0,0 +1,15 @@
use std::io::{self, BufRead};
fn main() {
let mut numbers: Vec<i64> = Vec::new();
let stdin = io::stdin();
for line in stdin.lock().lines().skip(1) {
let line = line.unwrap();
let number: i64 = line.trim().parse().unwrap();
numbers.push(number);
}
numbers.sort();
for number in numbers {
println!("{}", number);
}
}