Leetcode_總結】234. 迴文鏈表 - python

Q: 請判斷一個鏈表是否爲迴文鏈表。 示例 1: 輸入: 1->2 輸出: false 示例 2: 輸入: 1->2->2->1 輸出: true 鏈接:https://leetcode-cn.com/problems/palindrome-linked-list/description/ 思路:遍歷鏈表,判斷遍歷結果是否是迴文串 代碼: # Definition for singly-linke
相關文章
相關標籤/搜索