Data Structure and Dart Programming language problems

  • Home
  • Data Structure
    • Array and String
    • Linklist
  • Google Flutter
    • Google Flutter
    • DART
  • About Us
  • Home
  • Data Structure
    • Array and String
    • Linklist
  • Google Flutter
    • Google Flutter
    • DART
  • About Us

Wednesday, February 15, 2017

Arrays-String interview question 5

 Tech host     10:51 PM     array, array-interview-question, cracking-the-coding-interview, frequently-asked-question, interview-question, popular-string-question, string, string-interview-question, string-palindrome-question     No comments   

Cracking the coding interview

Arrays and String solutions

Hey guys i am providing the solutions for the question given in the Chapter one Arrays and String of the very famous book Cracking the coding interview. All these solutions are written by myself and checked for all the possible cases. Please take a look at them and help your self to solve your problems. If you have any query regarding the solutions or you want to ask something leave your comment and i will get back to you as soon as possible. Happy coding.

Question 5
There are three types of edits that can be performed on strings: insert a character, replace a character or remove a character; Given two strings, write a function to check if they are one edit (or zero edits) away. EXAMPLE
pale, ple -> true
pale. bake -> false
pale. bale -> true
pales. pale -> true

Here i am providing two solution for this problem one in which i have created separate functions for edit(insert , remove) and replace function, Here one thing is important to see that insert and remove are two side of one coin means to say that insert means that we are just adding one character to the previous sting and remove means that we are just deleting one char from the previous string so we can use only one function by just checking the length of two strings for insert and remove.

if you find this code hard to understand then please start writing your own code and use pen n paper for that so then you can keep track what is your code all about and what it is calculating.

this problem is one of the most asked question in the interviews so try ti understand this thoroughly and try similar problems like it.

Solution

You can find the solution for this problem here.
Solution 1 using  java separate functions.

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  System.out.println(oneInsert("apple","apples"));
 }

  public static boolean oneEdit(String a, String b)
 {
  boolean ctr=false;
    for(int i=0;i<a.length();i++){
   if(a.charAt(i)!=b.charAt(i)){
    if(ctr)
     return false;
    ctr=true; 
   }
  }
  return true;
 }
 public static boolean oneInsert(String s1,String s2)
 {
  String a = s1.length()>s2.length()?s1:s2;
  String b = s1.length()>s2.length()?s2:s1;
  for(int i=0,j=0;i<a.length()&&j<b.length();)
  {
   if(a.charAt(i)!=b.charAt(j))
   {
    if(i!=j)
    {
     return false;
    }
    i++; 
   }
   else
   {
    i++;
    j++;
   }
  }
  return true;
 }
}
Solution 2 using  java combined functions.

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  System.out.println(oneEdit("banana","banan"));
 }
 public static boolean oneEdit(String s1,String s2)
 {
  String a = s1.length()>s2.length()?s1:s2;
  String b = s1.length()>s2.length()?s2:s1;
  boolean ctr=false;

  for(int i=0,j=0;i<a.length()&&j<b.length();)
  {
   if(a.charAt(i)!=b.charAt(j))
   {
    if(i!=j)
    {
     return false;
    }
    if(ctr)
    {
     return false;
    }
    ctr=true;
    i++;
   }
   i++;
   j++;
  }
 return true;
 }
}

Note that this approach is not only specific to this type of question you can use this sorting technique in various questions such as if you want to check whether to word are anagrams of one another or not. You can simply sort them and compare them to find out. This approach is also helpful in other questions so i suggest that its better to learn this tricks and keep in mind while attempting the question you may find it useful. You can always search for more coding problems like this to get comfortable to this to approach or you can find new problems where this approach is applicable. So go and search more problems like this and check whether this approach is useful or not and you can tell me about it by commenting and writing about this to me

Try more and more problems that you find on string and arrays and try to develop an approach the will help you understand problems rather then learning the solution. Once you know how to approach the problem you will able to solve any problem related to strings and array. I wish best of luck to you for your future.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Arrays-String interview question 4

 Tech host     4:40 AM     array, array-interview-question, cracking-the-coding-interview, frequently-asked-question, interview-question, popular-string-question, string, string-interview-question, string-palindrome-question     No comments   

Cracking the coding interview

Arrays and String solutions

Hey guys i am providing the solutions for the question given in the Chapter one Arrays and String of the very famous book Cracking the coding interview. All these solutions are written by myself and checked for all the possible cases. Please take a look at them and help your self to solve your problems. If you have any query regarding the solutions or you want to ask something leave your comment and i will get back to you as soon as possible. Happy coding.

Question 4

Given a string, write a function to check if it is a permutation of a palindrome. Palindrome is a word that is the same forwards and backwards. A permutation is a rearrangement of letters. and remember that the palindrome does not need to be limited to just dictionary words there can be many more possible combinations.


EXAMPLE
Input: Tact Coa
Output: True ("taco cat". "atco cta".) means that they are palindrome permutation.
Solution
You can find the solution for this problem here.
Solution 1 using java .

Palindrome is the basic term that all programmers or who want to be become a programmer should know about it. Palindrome are basically those word that have same spelling when checked forward and backward here is the example NITIN is a palindrome means that we can write forward and backward it still be spelled NITIN. Remember this always as you will be facing many problem that have palindrome involved in it in one way or another. You can search more about palindrome and practice many more problems related to palindrome so that you become familiar with palindrome.

if you find this code hard to understand then please start writing your own code and use pen n paper for that so then you can keep track what is your code all about and what it is calculating.

this problem is one of the most asked question in the interviews so try ti understand this thoroughly and try similar problems like it.
import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  System.out.println(permutation());
 }

  public static boolean permutation()
 {
    String a="tacocat";
    String b="atcocta";
    int count=0;
    int[] arr_a = new int[256];
    int[] arr_b = new int[256];
    if(a.length()!=b.length())
  {
       return false;
    }
  for(int i=0;i<a.length();i++)
    {
       arr_a[(int)(a.charAt(i))]++;
       arr_b[(int)(b.charAt(i))]++;
    }

  for(int i=0;i<a.length();i++)
    {
       if(arr_a[(int)(a.charAt(i))]!=arr_b[(int)(a.charAt(i))])
       {
         return false; 
       }
       if(arr_a[(int)(a.charAt(i))]==1)
       {
          count++; 
       }
    }
    if(count>1)
  {
       return false;
    }
    return true;
 }
}

Note that this approach is not only specific to this type of question you can use this sorting technique in various questions such as if you want to check whether to word are anagrams of one another or not. You can simply sort them and compare them to find out. This approach is also helpful in other questions so i suggest that its better to learn this tricks and keep in mind while attempting the question you may find it useful. You can always search for more coding problems like this to get comfortable to this to approach or you can find new problems where this approach is applicable. So go and search more problems like this and check whether this approach is useful or not and you can tell me about it by commenting and writing about this to me.

Try more and more problems that you find on string and arrays and try to develop an approach the will help you understand problems rather then learning the solution. Once you know how to approach the problem you will able to solve any problem related to strings and array. I wish best of luck to you for your future.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Arrays-String interview question 3

 Tech host     4:03 AM     array, array-interview-question, cracking-the-coding-interview, frequently-asked-question, interview-question, popular-string-question, string, string-interview-question, string-palindrome-question     No comments   

Cracking the coding interview

Arrays and String solutions

Hey guys i am providing the solutions for the question given in the Chapter one Arrays and String of the very famous book Cracking the coding interview. All these solutions are written by myself and checked for all the possible cases. Please take a look at them and help your self to solve your problems. If you have any query regarding the solutions or you want to ask something leave your comment and i will get back to you as soon as possible. Happy coding.

Question 3 from the Cracking the coding interview.

Write a method to replace all spaces in a string with '%20. Assume that the string has sufficient space at the end to hold the additional characters, and that you are given the true length of the string. ( If implementing in Java, you can use a character array so that you can perform this operation in place.) or you can use string builder.

EXAMPLE
Input: "Mr John Smith "J 13
Output: "Mr%20John%20Smith"
Solution
You can find the solution for this problem here.
Solution 1 using java (Worst case Complexity N).

This is very simple problem if we talk about java implementation as java provide us String builder class which dynamically append characters to string.so we just need to check if the char in the original string is a blank space or not. if it is blank space then append the following text in the place of blank space and move on in the iteration. that is the simple logic behind this solution that i have followed.if you find this code hard to understand then please start writing your own code and use pen n paper for that so then you can keep track what is your code all about and what it is calculating.

This problem is one of the most asked question in the interviews so try ti understand this throughly and try similar problems like it.

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  String str ="asd fg hj";
    StringBuilder strb = new StringBuilder();
    for(int i=0;i<str.length();i++)
    {
       if(str.charAt(i)==' ')
       {
          strb.append("%20");
       }
       else
       {
          strb.append(str.charAt(i));
       }
    }
    System.out.println(strb);
 }
}

There are many other solution for this problem such as using string instead of string builder but it will consume more memory and you have to write extra line of code.You can traverse from the end of the string and add %20 to the string also.

Note that this approach is not only specific to this type of question you can use this sorting technique in various questions such as if you want to check whether to word are anagrams of one another or not. You can simply sort them and compare them to find out. This approach is also helpful in other questions so i suggest that its better to learn this tricks and keep in mind while attempting the question you may find it useful. You can always search for more coding problems like this to get comfortable to this to approach or you can find new problems where this approach is applicable. So go and search more problems like this and check whether this approach is useful or not and you can tell me about it by commenting and writing about this to me.

Try more and more problems that you find on string and arrays and try to develop an approach the will help you understand problems rather then learning the solution. Once you know how to approach the problem you will able to solve any problem related to strings and array. I wish best of luck to you for your future. I wish best of luck to you for your future.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Arrays-String interview question 2

 Tech host     3:51 AM     array, array-interview-question, cracking-the-coding-interview, frequently-asked-question, interview-question, popular-string-question, string, string-interview-question, string-palindrome-question     No comments   

Cracking the coding interview

Arrays and String solutions

Hey guys i am providing the solutions for the question given in the Chapter one Arrays and String of the very famous book Cracking the coding interview. All these solutions are written by myself and checked for all the possible cases. Please take a look at them and help your self to solve your problems. If you have any query regarding the solutions or you want to ask something leave your comment and i will get back to you as soon as possible. Happy coding.

Question 2

Given two strings, write a method to decide if one is a permutation of the other. that means that they same number of characters in it but arrangement will be different or we can say that order is different.

Solution
  • You can find the solution for this problem here.
  • Very simple problem just sort the strings and then compare them.
  • Sorting the string means that java will use their ascii value for the comparison process and arrange them in the increasing order and after that you can compare strings to be equal or not.
  • As permutation means that you have the same characters in the string but they will be arranged in the different order sorting them will put them in the increasing order of their ascii value.
Remember this trick as it will be very help full in solving these type of questions in the interview but pretend that you have thought about it during the interview otherwise you might have to face more difficult question that you haven't heard of.
If you find this code hard to understand then please start writing your own code and use pen n paper for that so then you can keep track what is your code all about and what it is calculating.
This problem is one of the most asked question in the interviews so try ti understand this throughly and try similar problems like it.
I wish best of luck to you for your future.
Solution 1 using java.
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */

class Ideone
{
  public static void main (String[] args) throws java.lang.Exception
  {
   System.out.println(permutation());
  }
  public static boolean permutation()
 {
    String str ="asdfghj";
    String str1 = "jhgndsa";
        char[] str2 = str.toCharArray();
        char[] str3 = str1.toCharArray();
    Arrays.sort(str2);
    Arrays.sort(str3);
       str = new String(str2);
       str1 = new String(str3);
       return str.equals(str1);
 }
}

Note that this approach is not only specific to this type of question you can use this sorting technique in various questions such as if you want to check whether to word are anagrams of one another or not. You can simply sort them and compare them to find out. This approach is also helpful in other questions so i suggest that its better to learn this tricks and keep in mind while attempting the question you may find it useful. You can always search for more coding problems like this to get comfortable to this to approach or you can find new problems where this approach is applicable. So go and search more problems like this and check whether this approach is useful or not and you can tell me about it by commenting and writing about this to me.

Try more and more problems that you find on string and arrays and try to develop an approach the will help you understand problems rather then learning the solution. Once you know how to approach the problem you will able to solve any problem related to strings and array. I wish best of luck to you for your future.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, February 14, 2017

Arrays-String interview question 1

 Tech host     4:00 AM     array, array-interview-question, cracking-the-coding-interview, frequently-asked-question, interview-question, popular-string-question, string, string-interview-question, string-palindrome-question     No comments   

Cracking the coding interview

Arrays and String question solutions

Hey guys i am providing the solutions for the question given in the Chapter one Arrays and String of the very famous book Cracking the coding interview. All these solutions are written by myself and checked for all the possible cases. Please take a look at them and help your self to solve your problems. If you have any query regarding the solutions or you want to ask something leave your comment and i will get back to you as soon as possible. Happy coding.

Question 1

Implement an algorithm to determine if a string has all unique characters.Think what you can do if you cannot use additional data structures? means that all the characters in the string must be for one time only.

unique-string
Solution
You can find the solution for this problem here

Here i am providing solutions for this question using different data structures to give to the knowledge about the them and to let you know that same problem can be solved in many different ways using different approaches that might be helpful to remember in your interviews.

If you find this code hard to understand then please start writing your own code and use pen n paper for that so then you can keep track what is your code all about and what it is calculating.

This problem is one of the most asked question in the interviews so try ti understand this thoroughly and try similar problems like it.

Solution 1 using hash map java (Worst case Complexity N)

This solution provides you the knowledge about using the hash map and functions of the hash map. Hash map is a data structure that has special key value mapping and used in many problems to reduce the complexity of the algorithm.

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  // your code goes here
  System.out.println(unique());
 }

  public static boolean unique()
{
  String str ="asdfjgh";
  HashMap < Character,Integer > map = new HashMap < Character,Integer > ();
  for(int i=0;i < str.length();i++)
  {

    if(map.containsKey(str.charAt(i)))
    {
       return false;
    }
    map.put(str.charAt(i),1);
 System.out.println(map.get('a'));
  }
return true;
}
}
Solution 2 using array java(Worst case Complexity N).

This method uses Boolean array to represent all the character and the value of the Boolean if the particular alphabet occurs one time in the string and that how this solution works checks if the particular alphabet has occur twice or not if yes the return false as the answer

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  // your code goes here
  System.out.println(unique());
 }

  public static boolean unique()
 {
    String str ="asdfghj";
    boolean arr[] = new boolean[256];
    for(int i=0;i < str.length();i++)
    {
      if(arr[i])
      {
          return false;
      }
      arr[i]=true;
    }
  return true;
 }

}
Solution 3 using array java(Worst case Complexity N2).

This is a simple iteration method that checks every alphabet with all the alphabet in the string to check if they match or not. If they matches then string is not unique.

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
 public static void main (String[] args) throws java.lang.Exception
 {
  // your code goes here
  System.out.println(unique());
 }

 public static boolean unique()
 {
    String str ="asdfghj";
    for(int i=0;i < str.length();i++)
    {
      char c = str.charAt(i);
      for(int j=i+1;j < str.length();j++)
      { 
          if(c==str.charAt(j))
          {
             return false;
          } 
      }
    }
    return true;
 }

}

Try more and more problems that you find on string and arrays and try to develop an approach the will help you understand problems rather then learning the solution. Once you know how to approach the problem you will able to solve any problem related to strings and array. I wish best of luck to you for your future.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Arrays-String interview question solution

 Tech host     3:27 AM     array, array-interview-question, cracking-the-coding-interview, frequently-asked-question, interview-question, popular-string-question, string, string-interview-question, string-palindrome-question     No comments   

Cracking the coding interview

Arrays and String question solutions

Hey guys i am providing the solutions for the question given in the Chapter one Arrays and String of the very famous book Cracking the coding interview. All these solutions are written by myself and checked for all the possible cases. Please take a look at them and help your self to solve your problems. If you have any query regarding the solutions or you want to ask something leave your comment and i will get back to you as soon as possible. Happy coding

Question 1

Implement an algorithm to determine if a string has all unique characters.Think what you can do if you cannot use additional data structures? means that all the characters in the string must be for one time only.

Solution
You can find the solution for this problem here.

Question 2

Given two strings, write a method to decide if one is a permutation of the other. that means that they same number of characters in it but arrangement will be different or we can say that order is different.

Solution
You can find the solution for this problem here.

Very simple problem just sort the strings and then compare them.

Solution 1 using java.

Question 3 from the Cracking the coding interview.

Write a method to replace all spaces in a string with '%20. Assume that the string has sufficient space at the end to hold the additional characters, and that you are given the true length of the string. ( If implementing in Java, you can use a character array so that you can perform this operation in place.) or you can use string builder.

EXAMPLE
Input: "Mr John Smith "J 13
Output: "Mr%20John%20Smith"

Solution
You can find the solution for this problem here.
Solution 1 using java click the following link to get the solution for this problem.

Question 4

Palindrome Permutation: Given a string, write a function to check if it is a permutation of a palindrome. A palindrome is a word or phrase that is the same forwards and backwards. A permutation is a rearrangement of letters. The palindrome does not need to be limited to just dictionary words.

EXAMPLE
Input: Tact Coa
Output: True (permutations: "taco cat". "atco cta". etc.)

Solution

You can find the solution for this problem here.

Solution 1 using java .

Question 5

One Away: There are three types of edits that can be performed on strings: insert a character, remove a character, or replace a character. Given two strings, write a function to check if they are one edit (or zero edits) away.

EXAMPLE pale, ple -> true
pales. pale -> true
pale. bale -> true
pale. bake -> false

Solution
You can find the solution for this problem here.
Solution 1 using java separate functions.
Solution 2 using java combined functions.

Question 6

String Compression: Implement a method to perform basic string compression using the counts of repeated characters. For example, the string aabcccccaaa would become a2b1c5a3. If the "compressed" string would not become smaller than the original string, your method should return the original string. You can assume the string has only uppercase and lowercase letters (a - z).

Solution
You can find the solution for this problem here.
Solution 1 using java.

Question 7

Rotate Matrix: Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method to rotate the image by 90 degrees. (an you do this in place?)

Solution
You can find the solution for this problem here.
Solution 1 using java.

Question 8

Zero Matrix: Write an algorithm such that if an element in an MxN matrix is 0, its entire row and column are set to O.

Solution
You can find the solution for this problem here.
Solution 1 using java.

Question 9

String Rotation: Assume you have a method isSubstring which checks if one word is a sub string of another. Given two strings, S1 and S2, write code to check if S2 is a rotation of S1 using only one call to isSubstring (e.g., "waterbottle" is a rotation of"erbottlewat").

Solution
You can find the solution for this problem here.
Concatinate s1 with s1 and then use isSubstring function for the result.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Blog Archive

  • ▼  2017 (18)
    • ►  August (2)
    • ►  March (10)
    • ▼  February (6)
      • Arrays-String interview question 5
      • Arrays-String interview question 4
      • Arrays-String interview question 3
      • Arrays-String interview question 2
      • Arrays-String interview question 1
      • Arrays-String interview question solution
  • ►  2016 (1)
    • ►  December (1)
  • ►  2013 (1)
    • ►  August (1)

Popular Posts

  • Dart replacing the node in the abstract syntax tree
    Dart replacing the node in the abstract syntax tree Here is the solution for that. import 'package:analyzer/analyzer.dart'...
  • How to print the node of the given linked list
    Linklist Interview Question How to print the node of the given linked list If you're new to linked lists, this is a great ex...
  • Array Left Rotation
    Array Interview Question Hacker Rank Question Array Left Rotation Hey guys i am providing the solutions for the question given in...
  • Arrays-String interview question 4
    Cracking the coding interview Arrays and String solutions Hey guys i am providing the solutions for the question given in the Ch...
  • Reverse of a given linked list
    linked list Interview Question Reverse of a given linked list You’re given the pointer to the head node of a linked list. Change...
  • Insert Node at nth position in a linked list
    linked list Interview Question Insert Node at nth position in a linked list You’re given the pointer to the head node of a linke...
  • Arrays-String interview question 5
    Cracking the coding interview Arrays and String solutions Hey guys i am providing the solutions for the question given in the C...
  • Arrays-String interview question 3
    Cracking the coding interview Arrays and String solutions Hey guys i am providing the solutions for the question given in the Ch...
  • Arrays-String interview question 7
    Cracking the coding interview Arrays and String solutions Hey guys i am providing the solutions for the question given in the Cha...
  • Arrays-String interview question 1
    Cracking the coding interview Arrays and String question solutions Hey guys i am providing the solutions for the question given i...

Categories

  • about-scra
  • abstract-syntax-tree
  • array
  • array-interview-question
  • array-left-rotation
  • compare-two-linked-list
  • cracking-the-coding-interview
  • dart
  • dart-analyzer
  • flutter
  • frequently-asked-question
  • google-flutter
  • interview-question
  • java
  • left-rotation
  • linklist-interview-question
  • linklist-print-a-node
  • linklist-question
  • popular-linklist-question
  • popular-string-question
  • scra
  • scra-2018
  • string
  • string-interview-question
  • string-palindrome-question

About Me

Tech host
I am a blogger interested in programming and coding challenges. I am interested in knowing about the new technologies and new tech products that are launched daily and to write about them.
View my complete profile

Label

  • about-scra
  • abstract-syntax-tree
  • array
  • array-interview-question
  • array-left-rotation
  • compare-two-linked-list
  • cracking-the-coding-interview
  • dart
  • dart-analyzer
  • flutter
  • frequently-asked-question
  • google-flutter
  • interview-question
  • java
  • left-rotation
  • linklist-interview-question
  • linklist-print-a-node
  • linklist-question
  • popular-linklist-question
  • popular-string-question
  • scra
  • scra-2018
  • string
  • string-interview-question
  • string-palindrome-question
Powered by Blogger.
Revoltify

Revoltify

Copyright © Data Structure and Dart Programming language problems | Powered by Blogger
Design by Hardeep Asrani | Blogger Theme by NewBloggerThemes.com | Distributed By Gooyaabi Templates