Skip to content

Commit 26a0c8a

Browse files
Add solution for Challenge 17
1 parent 3a22d04 commit 26a0c8a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

challenge-17/submissions/hvijaycse/solution-template.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ func main() {
2424
// IsPalindrome checks if a string is a palindrome.
2525
// A palindrome reads the same backward as forward, ignoring case, spaces, and punctuation.
2626
func IsPalindrome(s string) bool {
27-
// TODO: Implement this function
28-
// 1. Clean the string (remove spaces, punctuation, and convert to lowercase)
29-
// 2. Check if the cleaned string is the same forwards and backwards
3027

3128
r_list := []rune(s)
3229

0 commit comments

Comments
 (0)