Skip to content

Commit 241cd75

Browse files
checking lint issue
Signed-off-by: JeevaRamanathan <jeevaramanathan.m@infosys.com>
1 parent 23e353e commit 241cd75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/thealgorithms/strings/Isogram.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ public static boolean isIsogramByLength(String str) {
8080
}
8181
return uniqueChars.size() == str.length();
8282
}
83-
}
83+
}

src/test/java/com/thealgorithms/strings/IsogramTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ void testEmptyStringByArray() {
8989
void testEmptyStringByLength() {
9090
assertEquals(true, Isogram.isIsogramByLength(""));
9191
}
92-
}
92+
}

0 commit comments

Comments
 (0)