LoginSignup

Detect Palindrome Function (Go)

Asked 24 days agoAnswer 0Votes 1

1

🐹 Problem 5: Detect Palindrome Function (Go)

# 🔁 Palindrome Checker

## ❓ Problem Statement

In Go, write a function that checks if a given string is a **palindrome**.  
The comparison should ignore case and consider only alphanumeric characters.

Return `"true"` if it's a palindrome, `"false"` otherwise.

---

## 🔢 Input Format

true or false

---

## ✅ Constraints

- Length ≤ 1000
- Ignore non-alphanumeric characters

---

## 📌 Example Input

A man, a plan, a canal: Panama

---

## 🎯 Example Output

true
Detect Palindrome Function (Go)

hello - raja bind 6 days ago


great question - Rick Harrison 16 days ago


nice - Soham Chatterjee 23 days ago


interesting! - Pritam Mandal 23 days ago



0 Answers


Your Answer