We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55c90a5 commit d76a719Copy full SHA for d76a719
2 files changed
src/main/java/com/thealgorithms/conversions/AnyBaseToAnyBase.java
@@ -3,7 +3,7 @@
3
* <p>
4
* Time Complexity: O(n) [or appropriate complexity]
5
* Space Complexity: O(n)
6
- * * @author Reshma Kakkirala
+ * @author Reshma Kakkirala
7
*/
8
package com.thealgorithms.conversions;
9
src/main/java/com/thealgorithms/strings/ReverseString.java
@@ -62,7 +62,7 @@ public static String reverse3(String string) {
62
/**
63
* Reverses the given string using a stack.
64
* This method uses a stack to reverse the characters of the string.
65
- * * @param str The input string to be reversed.
+ * @param str The input string to be reversed.
66
* @return The reversed string.
67
68
public static String reverseStringUsingStack(String str) {
0 commit comments