• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

Wrong Directions given find minimum moves so that he can reach to the destination

July 20, 2014 by Dhaval Dave

A person wants to go from origin to a particular location, he can move in only 4 directions(i.e East, West, North, South) but his friend gave him a long route, help a person to find minimum Moves so that he can reach to the destination.
Input – NESNWES
Output – E

E.g – SSSNEEEW
output – EESS

Explanation : its very easy code :
1st way to think is with parenthesis matching there you have to match { , [ , ( and closing of it.
While here you have just four directions N,S,E,W.
instead of using Stack and increasing memory usage, we can take two variables say “north” and “east” which will take care of N,S and E,W.
for every occurrence of N or E, increment north or east by one.
and decrease for occurrences of  S and W.
Finally in both north and east variable, there will be some value, just convert them in Direction and print it.

Thanks to Dhaval for suggesting this approach and Code

#include <iostream>
#include <string.h>
#include <stdio.h>
using namespace std;
int NSValue(char exp){
if (exp == 'N' or exp == 'n') return 1;
else if(exp == 'S' or exp == 's') return -1;
}//NSValue
int EWValue(char exp){
if (exp == 'E' or exp == 'e') return 1;
else if(exp == 'W' or exp == 'w') return -1;
}//EWValue

int getDirection(char exp[]){
int east=0;
int north=0;
int i,j,temp,l;
l=strlen(exp);
for(i=0;i<l;i++){
 if((exp[i]=='N' or exp[i]=='n') || (exp[i]=='S' or exp[i]=='s')){north+=NSValue(exp[i]);}
 if((exp[i]=='E' or exp[i]=='e') || (exp[i]=='W' or exp[i]=='w')){east+=EWValue(exp[i]);}
}//for
if(east>0){for(i=0;i<east;i++){printf("%c",'E');}}//if
else if(east<0){east=-east;
 for(i=0;i<east;i++){printf("%c",'S');}
}//if


if(north>0){for(i=0;i<north;i++){printf("%c",'N');}}//if
else if(north<0){north=-north;
 for(i=0;i<north;i++){printf("%c",'S');}
}//elseif

}//getDirection
int main() {
 //char exp[100] = "NESNWES";
 char exp[100] = "SSSNEEEW";
 getDirection(exp);
 return 0;
}

You can check running code at http://ideone.com/e.js/U4yd4W

Similar Articles

Filed Under: Flipkart Interview Questions, Interview Questions, Microsoft Interview Questions, problem Tagged With: Array, codechef

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

N Petrol bunks or City arranged in circle. You have Fuel and distance between petrol bunks. Is it possible to find starting point so that we can travel all Petrol Bunks

Python String and numbers

Find Nearest Minimum number in left side in O(n)

Amazon Interview On-Campus For Internship – 1

VMWare Openings

CodeChef Code SGARDEN

C++ OOPs Part2

Find loop in Singly linked list

Regular Expression Matching

Binary Tree Isomorphic to each other

‘N’ Story Building, with 1,2,3 steps how many ways can a person reach top of building.

Find shortest distances between every pair of vertices ( Dynamic Programming Floyd Warshall Algorithm)

The greedy coins game Dynamic Programming

SAP Off Campus Hiring_ March 2015 Verbal Skills

Binary Tree in Java

C Program for TAIL command of UNIX

Level order traversal in Spiral form

Find next greater number with same set of digits

Generic Object Oriented Stack with Template

Knight Tour Problem (Graph – Breadth First Search)

Find the element that appears once others appears thrice

Add Sub Multiply very large number stored as string

Trapping Rain Water

Sort an array according to the order defined by another array

TicTacToe Game As Asked in Flipkart

Maximum size of square sub matrix with all 1’s in a binary matrix

Find position of the only set bit

Convert number to words java

Print vertical sum of all the axis in the given binary tree

Generate largest number arranging a no. of given non negative integer numbers

Copyright © 2025 · Genesis Framework · WordPress · Log in