Rearrange an array in maximum minimum form | Set 2 (O(1) extra space)
Given a sorted array of positive integers, rearrange the array alternately i.e first element should be the maximum value, second minimum value, third-second max, fourth-second min and so on. Examples:...
read more
Find elements which are present in first array and not in second
Given two arrays, the task is that we find numbers which are present in first array, but not present in the second array....
read more
Java Program For Adding Two Numbers Represented By Linked Lists- Set 2
Given two numbers represented by two linked lists, write a function that returns the sum list. The sum list is linked list representation of the addition of two input numbers. It is not allowed to modify the lists. Also, not allowed to use explicit extra space (Hint: Use Recursion)....
read more
Alternative Sorting
Given an array of integers, print the array in such a way that the first element is first maximum and second element is first minimum and so on....
read more
Zoho Interview Experience For A Software Developer (Off- Campus) 2024
Hello Everyone! I applied to Zoho off-campus drive for a software developer role. There are 5 rounds in this interview process....
read more
Longest Palindromic Substring
Given a string str, the task is to find the longest substring which is a palindrome....
read more
Next Greater Element (NGE) for every element in given Array
Given an array, print the Next Greater Element (NGE) for every element....
read more
Zoho Interview Experience | Off-Campus for 1.6 years experienced
Round 1: Programming (L1) and Aptitude....
read more
Zoho Interview | Set 8 (Off-Campus Drive for Project Trainee)
First Round: Written, pen paper based. The candidate has to write the output for C programs and basic aptitude questions. Total 30 questions. Test duration was of 3 hours....
read more
C Program For Adding Two Numbers Represented By Linked Lists- Set 2
Given two numbers represented by two linked lists, write a function that returns the sum list. The sum list is linked list representation of the addition of two input numbers. It is not allowed to modify the lists. Also, not allowed to use explicit extra space (Hint: Use Recursion)....
read more
Wildcard Pattern Matching
Given a text and a wildcard pattern, implement wildcard pattern matching algorithm that finds if wildcard pattern is matched with text. The matching should cover the entire text (not partial text). The wildcard pattern can include the characters ‘?’ and ‘*’...
read more
How to check if given four points form a square
Given coordinates of four points in a plane, find if the four points form a square or not....
read more