We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88e2bca commit 54a3e79Copy full SHA for 54a3e79
CoreJavaProjects/SingletonExample/src/StringHelper.java CoreJavaProjects/String-Programs/src/main/java/com/journaldev/java/string/StringFindAllPermutations.java
@@ -1,3 +1,4 @@
1
+package com.journaldev.java.string;
2
3
import java.util.HashSet;
4
import java.util.Set;
@@ -7,7 +8,7 @@
7
8
* @author pankaj
9
*
10
*/
-public class StringHelper {
11
+public class StringFindAllPermutations {
12
public static Set<String> permutationFinder(String str) {
13
Set<String> perm = new HashSet<String>();
14
//Handling error scenarios
0 commit comments