()
| 5 | ) |
| 6 | |
| 7 | func main() { |
| 8 | fmt.Print(isPalindrome("A man, a plan, a canal: Panama")) |
| 9 | } |
| 10 | |
| 11 | func isPalindrome(s string) bool { |
| 12 | for left, right := 0, len(s)-1; left <= right; left, right = left+1, right-1 { |
nothing calls this directly
no test coverage detected