Skip to content

Instantly share code, notes, and snippets.

@agapas
Created December 2, 2017 14:20
Show Gist options
  • Save agapas/c6738a97ca548b0e9632c6bc1481110e to your computer and use it in GitHub Desktop.
Save agapas/c6738a97ca548b0e9632c6bc1481110e to your computer and use it in GitHub Desktop.
trivia (javascript) - dirReduc
/*
Once upon a time, on a way through the old wild west,…
… a man was given directions to go from one point to another. The directions were "NORTH", "SOUTH", "WEST", "EAST". Clearly "NORTH" and "SOUTH" are opposite, "WEST" and "EAST" too. Going to one direction and coming back the opposite direction is a needless effort. Since this is the wild west, with dreadfull weather and not much water, it's important to save yourself some energy, otherwise you might die of thirst!
How I crossed the desert the smart way.
The directions given to the man are, for example, the following:
["NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH", "WEST"].
You can immediatly see that going "NORTH" and then "SOUTH" is not reasonable, better stay to the same place!
So the task is to give to the man a simplified version of the plan.
A better plan in this case is simply:
["WEST"]
Other examples:
In ["NORTH", "SOUTH", "EAST", "WEST"], the direction "NORTH" + "SOUTH" is going north and coming back right away.
What a waste of time! Better to do nothing.
The path becomes ["EAST", "WEST"], now "EAST" and "WEST" annihilate each other, therefore, the final result is [].
In ["NORTH", "EAST", "WEST", "SOUTH", "WEST", "WEST"], "NORTH" and "SOUTH" are not directly opposite but they become directly opposite after the reduction of "EAST" and "WEST" so the whole path is reducible to ["WEST", "WEST"].
Task
Write a function dirReduc which will take an array of strings and returns an array of strings with the needless directions removed (W<->E or S<->N side by side).
Examples
dirReduc(["NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH", "WEST"]); // => ["WEST"]
dirReduc(["NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH"]); // => []
Note
Not all paths can be made simpler. The path ["NORTH", "WEST", "SOUTH", "EAST"] is not reducible. "NORTH" and "WEST", "WEST" and "SOUTH", "SOUTH" and "EAST" are not directly opposite of each other and can't become such.
Hence the result path is itself : ["NORTH", "WEST", "SOUTH", "EAST"].
*/
const dirReduc = (pathArr) => {
const oppositeDirections = {
NORTH: 'SOUTH',
SOUTH: 'NORTH',
EAST: 'WEST',
WEST: 'EAST'
};
if (pathArr.length <= 1) return pathArr;
return pathArr.reduce((dirs, dir) => {
dirs[dirs.length - 1] !== oppositeDirections[dir]
? dirs.push(dir)
: dirs.pop();
return dirs;
}, []);
};
console.log(dirReduc(["NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH", "WEST"])); // => ["WEST"]
console.log(dirReduc(["NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH"])); // => []
console.log(dirReduc(["NORTH", "WEST", "SOUTH", "EAST"])); // => ["NORTH", "WEST", "SOUTH", "EAST"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment