Skip to content

Commit d198d8e

Browse files
Add Javadoc comments for AnyBaseToAnyBase class
Added Javadoc comments to describe the algorithm and its complexities.
1 parent 9875648 commit d198d8e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/java/com/thealgorithms/conversions/AnyBaseToAnyBase.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* [Brief description of what the algorithm does]
3+
* <p>
4+
* Time Complexity: O(n) [or appropriate complexity]
5+
* Space Complexity: O(n)
6+
* * @author Reshma Kakkirala
7+
*/
18
package com.thealgorithms.conversions;
29

310
import java.util.Arrays;

0 commit comments

Comments
 (0)