C#
 Computer >> コンピューター >  >> プログラミング >> C#

整数のリストから重複を印刷するC#プログラム


整数のリストから重複を印刷するには、ContainsKeyを使用します。

以下では、最初に整数を設定しました。

int[] arr = {
   3,
   6,
   3,
   8,
   9,
   2,
   2
};

次に、辞書コレクションを使用して、重複する整数の数を取得します。

重複する整数を取得するコードを見てみましょう。

using System;
using System.Collections.Generic;

namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         int[] arr = {
            3,
            6,
            3,
            8,
            9,
            2,
            2
         };
         var d = new Dictionary < int,int > ();
         foreach(var res in arr) {
            if (d.ContainsKey(res))
            d[res]++;
            else
            d[res] = 1;
         }
         foreach(var val in d)
         Console.WriteLine("{0} occurred {1} times", val.Key, val.Value);
      }
   }
}

出力

3 occurred 2 times
6 occurred 1 times
8 occurred 1 times
9 occurred 1 times
2 occurred 2 times

  1. Python-リストから重複を削除する方法

    リストは重要なコンテナであり、Web開発だけでなく、日常のプログラミングのほとんどすべてのコードで使用されます。リストを使用すればするほど、リストを習得するための要件が​​増えるため、リストの操作に関する知識が必要になります。リストから重複を削除する操作には多数のアプリケーションがあるため、その知識があると便利です。 例 # using naive methods # initializing list test_list = [1, 3, 5, 6, 3, 5, 6, 1] print ("The original list is : " +  str(test

  2. リストから重複要素を削除するPythonプログラム?

    1つのリストには重複要素が含まれています。私たちのタスクは、重複なしの要素を含む別のリストを作成することです。 例 A::[2,3,4,3,4,6,78,90] Output::[2,3,4,6,78,90] アルゴリズム Step 1: create a list. Step 2: create a new list which is empty. Step 3: traverse every element in list. Step 4: if element is not present in the list return true. Step 5: append in the