LeetCode算法笔记–Day7
02.01. 移除重复节点
题目:
编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。
示例1:
输入: [1, 2, 3, 3, 2, 1]
输出: [1, 2, 3]
示例2:
输入: [1, 1, 1, 1, 2]
输出: [1, 2]
我的解答:
1 | /** |
编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。
示例1:
输入: [1, 2, 3, 3, 2, 1]
输出: [1, 2, 3]
示例2:
输入: [1, 1, 1, 1, 2]
输出: [1, 2]
1 | /** |
jsonContent:
meta: false
pages: false
posts:
title: true
date: true
path: true
text: false
raw: false
content: false
slug: false
updated: false
comments: false
link: false
permalink: false
excerpt: false
categories: true
tags: true