Dutch national flag problem in Javascript

Image
Dutch national flag problem and solution in Javascript Problem statement:   The Dutch national flag (DNF) problem is one of the most popular programming problems proposed by Edsger Dijkstra. The flag of the Netherlands consists of three colors: white, red, and blue. The task is to randomly arrange balls of white, red, and blue such that balls of the same color are placed together. Now, let's consider an array with 3 distinct values say 0, 1 and 2. We won't be using any sort method and we need to sort this array in 0(n). Input Array :  let   arr  = [ 0 ,  2 ,  1 ,  0 ,  1 ,  2 ,  0 ,  2 ]; Expected Output: [ 0, 0, 0, 1, 1, 2, 2, 2 ] Solution Approach : When we see expected output, we can clearly see that sorted array is divided into 3 sections having values 0 , 1 and 2. So, let's divide the array in 3 sections: a) from 0th index to left boundary b) from left boundary to right boundary c) from right boundary to last index. Now we will create 2 pointers : left (starting from 0

Javascript Arrays: Take a Ten Minute Walk

 Codewars Problem and solution with approach explained


Objective:

In this challenge, we will learn about arrays in javascript.

Problem statement:

You live in the city of Cartesia where all roads are laid out in a perfect grid. You arrived ten minutes too early to an appointment, so you decided to take the opportunity to go for a short walk. The city provides its citizens with a Walk Generating App on their phones – every time you press the button it sends you an array of one-letter strings representing directions to walk (eg.  ['n', 's', 'w', 'e']). You always walk only a single block for each letter (direction) and you know it takes you one minute to traverse one city block, so create a function that will return true if the walk the app gives you will take you exactly ten minutes (you don't want to be early or late!) and will, of course, return you to your starting point. Return false otherwise.

Sample test cases:

Test.expect(isValidWalk(['n','s','n','s','n','s','n','s','n','s']), 'should return true');

Test.expect(!isValidWalk(['w','e','w','e','w','e','w','e','w','e','w','e']), 'should return false');

Test.expect(!isValidWalk(['w']), 'should return false');

Test.expect(!isValidWalk(['n','n','n','s','n','s','n','s','n','s']), 'should return false');

Explanation:

We must figure out a way to check that you have walked exactly ten steps i.e the length of array/object should be 10.

Second point to be considered is the steps taken in each direction should cancel each other (in other words should be equal) so that you land at the same point after the walk, then only we can return true. Else it will return false.

Keeping these 2 points in mind, let’s jump to the solution now:

 

 

Solution  :

function isValidWalk(walk) {

   var input = Array.from(walk);

 

    var nCount = 0,

        sCount = 0,

        wCount = 0,

        eCount = 0;

 

    if (input.length == '10') {

 

        input.forEach((value) => {

            if (value == 'n')

                nCount++;

            if (value == 's')

                sCount++;

            if (value == 'w')

                wCount++;

            if (value == 'e')

                eCount++;

 

        })

 

        if ((nCount == sCount) && (wCount == eCount)) {

            return true;

        } else

            return false;

    } else

        return false;

 

 

}

Comments

  1. How beautifully pertained to desired solution. ❣️

    ReplyDelete

Post a Comment

Popular posts from this blog

Ice Cream Parlor : Hackerrank Problem and Solution

Javascript Problem: Find the next perfect square!!

Disemvowel Trolls || Codewars problem and solution in Javascript || Topic : Strings and RegEx