diff --git a/src/main.rs b/src/main.rs index d569841..61ee47e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,18 +44,19 @@ mod rover { pub fn rotate(&self, rotation: Rotation) -> Rover { let Rover(lon, lat, direction) = self; - match rotation { + let new_direction = match rotation { Rotation::Left => { - let new_d = next_direction(*direction); - Rover(*lon, *lat, new_d) + next_direction(*direction) }, Rotation::Right => { - let new_d = next_direction(*direction); - let new_d = next_direction(new_d); - let new_d = next_direction(new_d); - Rover(*lon, *lat, new_d) + next_direction( + next_direction( + next_direction(*direction) + ) + ) } - } + }; + Rover(*lon, *lat, new_direction) } } }