Skip to content

Rustery/exercism-vehicle-purchase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vehicle Purchase

Welcome to Vehicle Purchase on Exercism's Go Track. If you need help running the tests or submitting your code, check out HELP.md. If you get stuck on the exercise, check out HINTS.md, but try and solve it without using those first :)

Introduction

Comparison

In Go numbers can be compared using the following relational and equality operators.

Comparison Operator
equal ==
not equal !=
less <
less or equal <=
greater >
greater or equal >=

The result of the comparison is always a boolean value, so either true or false.

a := 3

a != 4 // true
a > 5  // false

The comparison operators above can also be used to compare strings. In that case a lexicographical (dictionary) order is applied. For example:

	"apple" < "banana"  // true
	"apple" > "banana"  // false

If Statements

Conditionals in Go are similar to conditionals in other languages. The underlying type of any conditional operation is the bool type, which can have the value of true or false. Conditionals are often used as flow control mechanisms to check for various conditions.

For checking a particular case an if statement can be used, which executes its code if the underlying condition is true like this:

var value string

if value == "val" {
    return "was val"
}

In scenarios involving more than one case many if statements can be chained together using the else if and else statements.

var number int
result := "This number is "

if number > 0 {
    result += "positive"
} else if number < 0 {
    result += "negative"
} else {
    result += "zero"
}

If statements can also include a short initialization statement that can be used to initialize one or more variables for the if statement. For example:

num := 7
if v := 2 * num; v > 10 {
    fmt.Println(v)
} else {
    fmt.Println(num)
}
// Output: 14

Note: any variables created in the initialization statement go out of scope after the end of the if statement.

Instructions

In this exercise, you are going to write some code to help you prepare to buy a vehicle.

You have three tasks, one to determine if you need a license, one to help you choose between two vehicles and one to estimate the acceptable price for a used vehicle.

1. Determine if you will need a driver's license

Some vehicle kinds require a driver's license to operate them. Assume only the kinds "car" and "truck" require a license, everything else can be operated without a license.

Implement the NeedsLicense(kind) function that takes the kind of vehicle and returns a boolean indicating whether you need a license for that kind of vehicle.

needLicense := NeedsLicense("car")
// Output: true

needLicense = NeedsLicense("bike")
// Output: false

2. Choose between two potential vehicles to buy

You evaluate your options of available vehicles. You manage to narrow it down to two options but you need help making the final decision. For that, implement the function ChooseVehicle(option1, option2) that takes two vehicles as arguments and returns a decision that includes the option that comes first in lexicographical order.

vehicle := ChooseVehicle("Wuling Hongguang", "Toyota Corolla")
// Output: "Toyota Corolla is clearly the better choice."

ChooseVehicle("Volkswagen Beetle", "Volkswagen Golf")
// Output: "Volkswagen Beetle is clearly the better choice."

3. Calculate an estimation for the price of a used vehicle

Now that you made a decision, you want to make sure you get a fair price at the dealership. Since you are interested in buying a used vehicle, the price depends on how old the vehicle is. For a rough estimate, assume if the vehicle is less than 3 years old, it costs 80% of the original price it had when it was brand new. If it is at least 10 years old, it costs 50%. If the vehicle is at least 3 years old but less than 10 years, it costs 70% of the original price.

Implement the CalculateResellPrice(originalPrice, age) function that applies this logic using if, else if and else (there are other ways if you want to practice). It takes the original price and the age of the vehicle as arguments and returns the estimated price in the dealership.

CalculateResellPrice(1000, 1)
// Output: 800

CalculateResellPrice(1000, 5)
// Output: 700

CalculateResellPrice(1000, 15)
// Output: 500

Note the return value is a float64.

Source

Created by

  • @kahgoh

Releases

No releases published

Packages

No packages published

Languages