Skip to main content

Coding Interview Questions Set 1


From this article, I will be sharing with you all a series of articles on coding interview questions.
So please stay connected for the latest set of questions.
It will be a good brainstorming exercise and will also prepare
you for coding interviews and will definitely boost your confidence.

So let's start,

1)Reverse of a string with only O(1) extra memory.

Solution:

var reverse = function(string) {
    let result = ''
    for(let i= string.length -1; i >= 0; i--){
        result += string[i];
    }
    return result;
};


2)Fizz Buzz: Write a program that will accept a number n and will output number till n but for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “Buzz”. For numbers which are multiples of both three and five output “FizzBuzz”.

Solution:

var fizzBuzz= function(n) {
    const arr=[]
    for(i=1; i<=n; i++){
        if(i%15===0) arr.push("FizzBuzz")
        else if(i%3===0) arr.push("Fizz")
        else if(i%5===0) arr.push("Buzz")
        else arr.push(i.toString())
    }
    return arr
};


3)Find a single element in an array of multiple elements where every element appears twice except the one you have to find. Do it in O(n) and with no extra memory.

Solutions:
There are multiple solutions that you can solve this in javascript,

a)     

function findSingle(nums) {
 return nums.reduce((prev, curr) => prev ^ curr, 0);
}

Logic:
The reduce method in JS reduces the array to a single value.
XOR will return 1 only on two different bits.
So if two numbers are the same, XOR will return 0.
Finally, only one number left.
A ^ A = 0 and A ^ B ^ A = B.

b)You have to find it out and have to post it in the comments section.
Hope to see someone in the comment section.

I hope you like this article.
Please stay connected for coding interview questions set 2.
   
Don't forget to subscribe to this blog.
You can also follow me on Twitter or Linkedin for the latest updates.

Written By:

Saurabh Joshi

Comments

  1. const findSingle = (arr) =>
    arr.reduce((acc, curr, idx) => {
    if (acc.includes(curr)) {
    acc.splice(acc.indexOf(curr), 1);
    return acc;
    }
    else { return acc.concat([curr])}
    }, [])

    ReplyDelete
  2. Your solution for (1) creates O(n) extra memory. For O(1), you need to reverse the input string in-place, with a fixed-size variable to facilitate 3-line-swaps:

    var reverse = function(str) {

    var tmp = '';
    str = str.split('');

    for(let i = 0; i < str.length / 2; i++) {
    tmp = str[i];
    str[i] = str[str.length - 1 - i];
    str[str.length - 1 - i] = tmp;
    }

    return str.join('');
    };

    ReplyDelete
    Replies
    1. You allocate a new array in "result" instead of reversing in-place.

      For input array length n, you allocate n more bytes to hold result.
      For input length 2*n, allocate 2*n extra,
      For input length 3*n, allocate 3*n extra.

      Extra memory graph will look like f(x) = x

      My method always allocates the same extra memory ("tmp"), no matter how input length increases. So the graph will look like f(x) = 1 or some constant. Flat horizontal graph.

      Consider this similar problem, it also works in-place:
      https://www.geeksforgeeks.org/reverse-individual-words-with-o1-extra-space/

      Delete
    2. Result is not an array it a string varia lble. And I am just appending it .

      Delete
    3. How much memory does your "result" allocate when input "string" is length 100? 200? 300?

      Delete
  3. Replies
    1. I am glad. Thank you for these posts. May your life be full of teachers.

      Delete

Post a Comment

Popular posts from this blog

Globant part 1

 1)call,apply,bind example? Ans: a. call Method: The call method is used to call a function with a given this value and arguments provided individually. Javascript code: function greet(name) {   console.log(`Hello, ${name}! I am ${this.role}.`); } const person = {   role: 'developer' }; greet.call(person, 'Alice'); // Output: Hello, Alice! I am developer. In this example, call invokes the greet function with person as the this value and passes 'Alice' as an argument. b. apply Method: The apply method is similar to call, but it accepts arguments as an array. Javascript code: function introduce(language1, language2) {   console.log(`I can code in ${language1} and ${language2}. I am ${this.name}.`); } const coder = {   name: 'Bob' }; introduce.apply(coder, ['JavaScript', 'Python']); // Output: I can code in JavaScript and Python. I am Bob. Here, apply is used to invoke introduce with coder as this and an array ['JavaScript', 'Pyt...

Node.js: Extract text from image using Tesseract.

In this article, we will see how to extract text from images using Tesseract . So let's start with this use-case, Suppose you have 300 screenshot images in your mobile which has an email attribute that you need for some reason like growing your network or for email marketing. To get an email from all these images manually into CSV or excel will take a lot of time. So now we will check how to automate this thing. First, you need to install Tesseract OCR( An optical character recognition engine ) pre-built binary package for a particular OS. I have tested it for Windows 10. For Windows 10, you can install  it from here. For other OS you make check  this link. So once you install Tesseract from windows setup, you also need to set path variable probably, 'C:\Program Files\Tesseract-OCR' to access it from any location. Then you need to install textract library from npm. To read the path of these 300 images we can select all images and can rename it to som...

CSS INTERVIEW QUESTIONS SET 2

  You make also like this CSS interview question set 1. Let's begin with set 2, 5)What is the difference between opacity 0 vs display none vs visibility hidden? Property           | occupies space | consumes clicks | +--------------------+----------------+-----------------+ | opacity: 0         |        yes      |        yes       | +--------------------+----------------+-----------------+ | visibility: hidden |        yes       |        no        | +--------------------+----------------+-----------------+ | display: none      |        no       |        no        | When we say it consumes click, that means it also consumes other pointer-events like onmousedown,onmousemove, etc. In e...