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 coursePreassingment_Q_3
Find two numbers in given unsorted array, so that sum of two numbers which is closest to K. Note that sum should be less than K. If there are more than one answer, print any one. Examples: Input: arr[] = {2, 1, 4, 9, 2, 3, 8, 5}, k = 18 Output: (9, 8) Input: arr[] = {2, 1, 4, 9, 2, 3, 8, 6}, k = 13 Output: (9, 3) or (8, 4)PreAssignment_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
Love Open Source and this site? Check out how you can help us