moving heap sort from core-java to algorithms ()

This commit is contained in:
fanatixan 2018-10-17 21:54:35 +02:00 committed by maibin
parent a470906e66
commit 03065a43e9
2 changed files with 2 additions and 2 deletions
algorithms/src
main/java/com/baeldung/algorithms/heapsort
test/java/com/baeldung/algorithms/heapsort

@ -1,4 +1,4 @@
package com.baeldung.heapsort;
package com.baeldung.algorithms.heapsort;
import java.util.ArrayList;
import java.util.Arrays;

@ -1,4 +1,4 @@
package com.baeldung.heapsort;
package com.baeldung.algorithms.heapsort;
import static org.assertj.core.api.Assertions.assertThat;