diff --git a/Sorting/MergeSort.java b/Sorting/MergeSort.java index 9bd7075..6dd10b6 100644 --- a/Sorting/MergeSort.java +++ b/Sorting/MergeSort.java @@ -1,96 +1,9 @@ // write a code of mergesort using function in java -// import java.util.Scanner; -// public class MergeSort{ -// // use notation beginning, mid and end - -// public static void main(String[] args){ -// Scanner sc = new Scanner(System.in); -// System.out.println("Enter the size of the array: "); -// int n = sc.nextInt(); -// int[] arr = new int[n]; -// System.out.println("Enter the elements of the array: "); -// for(int i=0; i