From 9df866b411301652683cfc546fef561a006ea9b1 Mon Sep 17 00:00:00 2001 From: Andinus Date: Wed, 8 Sep 2021 23:11:02 +0530 Subject: Rust: Add Assembly Line --- rust/assembly-line/HINTS.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 rust/assembly-line/HINTS.md (limited to 'rust/assembly-line/HINTS.md') diff --git a/rust/assembly-line/HINTS.md b/rust/assembly-line/HINTS.md new file mode 100644 index 0000000..800b9f3 --- /dev/null +++ b/rust/assembly-line/HINTS.md @@ -0,0 +1,13 @@ +# Hints + +## General + +## 1. Calculate the production rate per hour + +- Determining the success rate can be done through a [conditional statement](https://doc.rust-lang.org/stable/book/ch03-05-control-flow.html#if-expressions) or with [pattern matching](https://doc.rust-lang.org/stable/book/ch18-01-all-the-places-for-patterns.html#match-arms). +- As Rust only allows multiplication between values of the same type, some [type casting](https://doc.rust-lang.org/rust-by-example/types/cast.html) will have to be done. + +## 2. Calculate the number of working items produced per minute + + +- Just like multiplication, division is only possible between numbers of the same type. By writing a number with a decimal point (e.g. `1.0` instead of `1`) we can write inline constants with a floating point type. \ No newline at end of file -- cgit 1.4.1-2-gfad0