我试图解决这个问题。
基本上我需要从字符数组中选择第二个副本。
Input {'x','y','z','x','y'} output: y
Input { 'a', 'a', 'b', 'a', 'c', 'b', 'a', 'c', 'b' } Output: b
Input { 'a','a','a','b','a','c','b','a','c','b' } output: b
编辑:
Input {'a', 'b', 'c', 'b', 'a', 'c', 'b', 'a', 'c', 'b'} Output: a
我试过写这段代码,但如果第一个字符立即重复,它会失败:(有什么帮助纠正这个吗?
public static char returnSecondDuplicate(char[] arr)
{
if (arr.Length == 0)
throw new ArgumentNullException("empty input");
var dictionary = new Dictionary<char, int>();
Char second = '\0';
int duplicateCount = 0;
for (int i = 0; i <= arr.Length - 1; i++)
{
if (!dictionary.ContainsKey(arr[i]))
{
dictionary.Add(arr[i], 1);
}
else
{
duplicateCount++;
if (duplicateCount == 2)
{
second = arr[i];
}
}
}
return second;
}