[c#] 배열 반복과 동시에 repeated 초기화

2021. 6. 18. 16:46[C#] 코딩테스트 문제풀이

반응형

배열

using System;
using System.Collections.Generic;
using System.Linq;
public class Solution {
    public int solution(int n, int[,] computers) {
        int answer = 1;
        bool[] visited = Enumerable.Repeat<bool>(false,n).ToArray<bool>();
        return answer;
    }
}

 

리스트

using System;
using System.Collections.Generic;
using System.Linq;
public class Solution {
    public int solution(int n, int[,] computers) {
        int answer = 1;
        List<bool> visited =  Enumerable.Repeat<bool>(false,n).ToList<bool>();
        return answer;
    }
}

 

반응형