Showing posts with label amazon interview questions. Show all posts
Showing posts with label amazon interview questions. Show all posts

Longest palindrome Sub-sequence from the given String using Dynamic Programming

Write a program to find the longest sub-sequence palindrome from the given string by using dynamic programming. For example Input String : ABCDQRDC Longest sub-sequence palindrome: 5  So let's see how we will solve and...

How to find missing number in a sequential array ?

Given a list of sequential integers and need to finding a missing number from the list of numbers. For example if we have an array like Example:1 array = {1,2,3,5,6} Finding missing number 4...

Split the array into two equal Sum subarrays

Given an array of integers greater than zero, find it possible to split it in two subarrays such that the sum of the two subarrays is the same or with minimal difference. Print the...

How to do simple matrix multiplication

Simple matrix multiplication with sample java code. public class MatrixMultiplication { public static void main(String[] args) { int a[][] = new int[][] { {2,3}, {1,2}, {5,6} }; int b[][] = new int[][] { {4,5,6},...

How to find the largest subarray with sum 0

Given an array of integers, find the largest subarray with sum equals to 0. If theres no subarray with sum 0 then print as "No subarray with sum 0". As solution we are going...

How to find integer pairs with given sum

Given an array of integers, and a number ‘sum’, find the number of pairs of integer in the array whose sum is equal to ‘sum’. Array can be a combination of +ve, -ve and...

How to print singly linked list in reverse order

If we talk about Singly Linked List then it will be a 1 way traversal from head node to tail node. But if we need to print the linked list values from tail node...

Finding Minimum Distinct Ids

Given an array of items, an i-th index element denotes the item id’s and given a number m, the task is to remove m elements such that there should be minimum distinct id’s left.Print...