We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c90f6 commit d53ba28Copy full SHA for d53ba28
src/main/java/com/thealgorithms/compression/ArithmeticCoding.java
@@ -7,7 +7,7 @@
7
* Reference: https://en.wikipedia.org/wiki/Arithmetic_coding
8
*/
9
10
-public class ArithmeticCoding {
+public final class ArithmeticCoding {
11
12
private ArithmeticCoding() {
13
throw new UnsupportedOperationException("Utility class");
src/main/java/com/thealgorithms/compression/LZW.java
@@ -10,7 +10,7 @@
* Reference: https://en.wikipedia.org/wiki/Lempel–Ziv–Welch
-public class LZW {
+public final class LZW {
14
15
private LZW() {
16
0 commit comments