There are no reviews yet. Be the first to send feedback to the community and the maintainers!
PreAssign_Feb20_Q_6
PreAssign_Feb20_Q_3
PreAssign_Feb20_Q_5
PreAssign_Feb20_Q_4
PreAssign_Feb20_Q_1
PreAssign_Feb20_Q_7
PreAssign_Feb20_Q_8
PreAssign_Feb20_Q_9
PreAssign_Feb20_Q_2
PreAssignment2
Assignments before start of courseLinearDoublyLinkedList
CurrentDateAndTime
LinearSinglyLinkedList
PreAssignments4
Assignments before coursePreAssignment_Q_6
Write a program to convert given integer into Roman string. Here is a chart of Roman numerals for 1 to 100 for your reference.PreAssignment3
Assignment before start of coursePreAssignment_Q_1
Given an array arr[] of N integers, the task is to sort the array without changing the position of negative numbers (if any) i.e. the negative numbers need not be sorted. Examples: Input: arr[] = {2, -6, -3, 8, 4, 1} Output: 1 -6 -3 2 4 8 Input: arr[] = {-2, -6, -3, -8, 4, 1} Output: -2 -6 -3 -8 1 4StringSorting_BasedOn_Alphabet
PreAssignment_Q_2
Given an unsorted sequence a[], the task is to find the K-th missing contiguous element in the increasing sequence of the array elements i.e. consider the array in sorted order and find the kth missing number. If no k-th missing element is there output -1. Note: Only elements exist in the range of minimum and maximum element to be considered. Examples: Input: arr[] = {2, 4, 10, 7}, k = 5 Output: 9 Missing elements in the given array: 3, 5, 6, 8, 9 5th missing is 9. Input: arr[] = {1, 3, 4}, k = 5 Output: -1Love Open Source and this site? Check out how you can help us