Write a function which will print the character coming maximum number of times in a given String. For example: Input String: ritambhara Output: a Because […]
Given a String in which characters may be repeating. Find the length of longest substring of where all characters are unique (non-repeating). For Example: If […]
Given a linked list, write code to remove duplicates from the list. Input : 1->3->4->4->6->6->6->7 Output: 1->3->4->6->7 Input : 4->1->4->4 Output: 4->1
Given two linked list with Node values sorted in ascending order. Write function that accepts these two linked lists, merge them and return pointer to […]