Add solutions for first excercises and test

This commit is contained in:
Jann-Niklas Zimmermann 2019-10-14 12:59:01 +02:00
parent e6161a6f58
commit 8b60656443
12 changed files with 19 additions and 11 deletions

2
Cargo.lock generated
View file

@ -600,7 +600,7 @@ dependencies = [
[[package]]
name = "rustlings"
version = "1.4.0"
version = "1.4.1"
dependencies = [
"assert_cmd 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -5,8 +5,7 @@ fn main() {
call_me();
}
fn call_me() {}

View file

@ -5,7 +5,7 @@ fn main() {
call_me(3);
}
fn call_me(num) {
fn call_me(num: i32) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
call_me();
call_me(5);
}
fn call_me(num: i32) {

View file

@ -9,7 +9,7 @@ fn main() {
println!("Your sale price is {}", sale_price(original_price));
}
fn sale_price(price: i32) -> {
fn sale_price(price: i32) -> i32 {
if is_even(price) {
price - 10
} else {

View file

@ -7,7 +7,7 @@ fn main() {
}
fn square(num: i32) -> i32 {
num * num;
num * num
}

View file

@ -7,6 +7,7 @@ pub fn bigger(a: i32, b: i32) -> i32 {
// - another function call
// - additional variables
// Scroll down for hints.
if a > b { a } else { b }
}
// Don't mind this for now :)

View file

@ -10,6 +10,14 @@
// Put your function here!
// fn ..... {
fn calculate_price(amount: i32) -> i32 {
if amount > 40 {
amount * 1
} else {
amount * 2
}
}
// Don't modify this function!
#[test]
fn verify_test() {

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
x = 5;
let x = 5;
println!("x has the value {}", x);
}

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
let x;
let x: i32 = 0;
if x == 10 {
println!("Ten!");
} else {

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
let x = 3;
let mut x = 3;
println!("Number {}", x);
x = 5;
println!("Number {}", x);

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
let x: i32;
let x: i32 = 10;
println!("Number {}", x);
}