deduplicate code in rotate method

This commit is contained in:
Daniel Barlow 2023-11-03 19:00:27 +00:00
parent 9a9bad4f71
commit 95d201eb2f

View File

@ -44,18 +44,19 @@ mod rover {
pub fn rotate(&self, rotation: Rotation) -> Rover { pub fn rotate(&self, rotation: Rotation) -> Rover {
let Rover(lon, lat, direction) = self; let Rover(lon, lat, direction) = self;
match rotation { let new_direction = match rotation {
Rotation::Left => { Rotation::Left => {
let new_d = next_direction(*direction); next_direction(*direction)
Rover(*lon, *lat, new_d)
}, },
Rotation::Right => { Rotation::Right => {
let new_d = next_direction(*direction); next_direction(
let new_d = next_direction(new_d); next_direction(
let new_d = next_direction(new_d); next_direction(*direction)
Rover(*lon, *lat, new_d) )
)
} }
} };
Rover(*lon, *lat, new_direction)
} }
} }
} }