Skip to content

Commit ac08c80

Browse files
authored
Merge pull request #575 from sir-gon/develop
[REFACTOR] [Hacker Rank] Interview Preparation Kit: String Manipulati…
2 parents a90306a + 8394863 commit ac08c80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hackerrank/interview_preparation_kit/string_manipulation/alternating_characters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# @link Problem definition [[docs/hackerrank/interview_preparation_kit/string_manipulation/alternating-characters.md]] # noqa
33
# pylint: enable=line-too-long
44

5-
def alternating_characters(word: str):
5+
def alternating_characters(word: str) -> int:
66

77
last: str = ''
88
new_string: str = ''

0 commit comments

Comments
 (0)