Sha256: 0b5718b17007abd9bec514f3002b14b306bb2305cf25a5dec93106cca5a5e6b6

Contents?: true

Size: 1.65 KB

Versions: 169

Compression:

Stored size: 1.65 KB

Contents

# Robot Name

Manage robot factory settings.

When robots come off the factory floor, they have no name.

The first time you boot them up, a random name is generated in the format
of two uppercase letters followed by three digits, such as RX837 or BC811.

Every once in a while we need to reset a robot to its factory settings,
which means that their name gets wiped. The next time you ask, it will
respond with a new random name.

The names must be random: they should not follow a predictable sequence.
Random names means a risk of collisions. Your solution must ensure that
every existing robot has a unique name.

This exercise introduces work with Julia's [type system](http://docs.julialang.org/en/stable/manual/types/)
and random [numbers](http://docs.julialang.org/en/stable/stdlib/numbers/).

Let's create a structure that will describe our robots
and then use it to create new instances and to work with them.

Generate the robot's name using randomness and don't worry about
collisions, tests sometimes will fail and that's alright.

Resetting the robot to the factory settings is like a surgery,
so we declare a method that will reset the robot's settings.
Take a note that skeleton method reset! has an exclamation mark suffix
meaning that the method changes given argument's contents.

Futhermore, experiment with testing and check out the situations when
there are lots of collisions (like when you generate name one thousand times).


## Source

A debugging session with Paul Blackwell at gSchool. [http://gschool.it](http://gschool.it)


## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

169 entries across 169 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.138 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.137 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.136 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.135 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.134 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.133 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.132 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.131 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.130 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.129 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.128 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.127 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.126 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.125 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.124 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.123 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.122 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.121 tracks/julia/exercises/robot-name/README.md
trackler-2.2.1.120 tracks/julia/exercises/robot-name/README.md