유니티 C# 두 배열에 교집합 찾는 방법 예시 코드 작성

반응형

유니티 C# 두 배열에 교집합 찾는 방법 예시 코드 작성

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Linq;

public class ArrayIntersection : MonoBehaviour
{
    void Start()
    {
        int[] array1 = { 1, 2, 3, 4, 5 };
        int[] array2 = { 3, 4, 5, 6, 7 };

        // 배열의 교집합을 찾기
        var intersection = array1.Intersect(array2);

        // 결과 출력
        foreach (int num in intersection)
        {
            Debug.Log(num);
        }
    }
}
반응형