Skip to content

Commit d391632

Browse files
committed
fix: changing location of others to their meaningful respective places
1 parent 453740e commit d391632

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

src/main/java/com/thealgorithms/others/CountSetBits.java renamed to src/main/java/com/thealgorithms/bitmanipulation/CountSetBits.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.bitmanipulation;
22

33
public class CountSetBits {
44

src/main/java/com/thealgorithms/others/CountChar.java renamed to src/main/java/com/thealgorithms/strings/CountChar.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
public final class CountChar {
44
private CountChar() {

src/main/java/com/thealgorithms/others/CountWords.java renamed to src/main/java/com/thealgorithms/strings/CountWords.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
/**
44
* @author Marcus

src/main/java/com/thealgorithms/others/ReturnSubsequence.java renamed to src/main/java/com/thealgorithms/strings/ReturnSubsequence.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
/**
44
* Class for generating all subsequences of a given string.

src/main/java/com/thealgorithms/others/StringMatchFiniteAutomata.java renamed to src/main/java/com/thealgorithms/strings/StringMatchFiniteAutomata.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
import java.util.Set;
44
import java.util.TreeSet;

src/test/java/com/thealgorithms/others/CountSetBitsTest.java renamed to src/test/java/com/thealgorithms/bitmanipulation/CountSetBitsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.bitmanipulation;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44

src/test/java/com/thealgorithms/others/CountCharTest.java renamed to src/test/java/com/thealgorithms/strings/CountCharTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44

src/test/java/com/thealgorithms/others/CountWordsTest.java renamed to src/test/java/com/thealgorithms/strings/CountWordsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44

src/test/java/com/thealgorithms/others/ReturnSubsequenceTest.java renamed to src/test/java/com/thealgorithms/strings/ReturnSubsequenceTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
44

src/test/java/com/thealgorithms/others/StringMatchFiniteAutomataTest.java renamed to src/test/java/com/thealgorithms/strings/StringMatchFiniteAutomataTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.others;
1+
package com.thealgorithms.strings;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
44

0 commit comments

Comments
 (0)