remove unused variable

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

View File

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