We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82faac7 commit 51d833dCopy full SHA for 51d833d
1 file changed
src/main/java/com/thealgorithms/divideandconquer/KaratsubaMultiplication.java
@@ -34,4 +34,3 @@ public static long karatsuba(long x, long y) {
34
return (z2 * (long) Math.pow(10, 2 * m)) + ((z1 - z2 - z0) * (long) Math.pow(10, m)) + z0;
35
}
36
37
-
0 commit comments