[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;
}
}
반응형
'[C#] 코딩테스트 문제풀이' 카테고리의 다른 글
[C#] 프로그래머스 문제 - 네트워크(DFS) (0) | 2021.06.18 |
---|---|
[C#] 프로그래머스 - 단어 변환(BFS) (0) | 2021.06.17 |
[C#]프로그래머스 - 2개이하로다른비트 (0) | 2021.05.18 |
[C#] 프로그래머스 -게임 맵 최단거리[BFS] (0) | 2021.05.08 |
[C#] 프로그래머스 - 주식가격(스택) (0) | 2021.05.08 |