Computer Science, asked by pranjalsharma7954, 10 months ago

Given an unsorted array, find the kth smallest element in the array

Answers

Answered by patilvipul244
0

Answer:

ExplanInput: arr[] = {7, 10, 4, 3, 20, 15}

      k = 3

Output: 7

Input: arr[] = {7, 10, 4, 3, 20, 15}

      k = 4

Output: 10ation:

Similar questions