remove unused variable

This commit is contained in:
EAlexa
2020-04-07 16:36:48 +02:00
parent fecfe9d705
commit 3629e32c08

View File

@ -57,7 +57,6 @@ public class heap_sort {
// Driver program // Driver program
public static void main(String args[]) { public static void main(String args[]) {
int arr[] = {12, 11, 13, 5, 6, 7}; int arr[] = {12, 11, 13, 5, 6, 7};
int n = arr.length;
heap_sort ob = new heap_sort(); heap_sort ob = new heap_sort();
ob.sort(arr); ob.sort(arr);