MCPcopy Create free account
hub / github.com/VanjaRo/LeetCode / ListNode

Struct ListNode

tasks/234.go:22–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22type ListNode struct {
23 Val int
24 Next *ListNode
25}
26
27func isPalindrome(head *ListNode) bool {
28 if head == nil {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected