Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 동적계획법
- indices
- heap
- dynamic programming
- 알고리즘
- contentToString
- sortedBy
- Recursion
- Util
- booleanarray
- Developer
- dp
- PriorityQueue
- intarray
- programmers
- 코틀린
- 2D Array
- 2020
- Queue
- Kotlin
- GREEDY
- solution
- Poll
- Java
- foreach
- 프로그래머스
- lastIndex
- hackerrank
- Main
- report
Archives
- Today
- Total
목록네트워크 (1)
Code in
프로그래머스 깊이/너비 우선 탐색 네트워크 with Kotlin
프로그래머스 깊이/너비 우선 탐색 네트워크 문제입니다. IntelliJ에서의 풀이입니다. val n = 3 val computers = arrayOf(intArrayOf(1, 1, 0), intArrayOf(1, 1, 0), intArrayOf(0, 0, 1)) val computers2 = arrayOf(intArrayOf(1, 1, 0), intArrayOf(1, 1, 1), intArrayOf(0, 1, 1)) fun solution(n: Int, computers: Array): Int { var answer = 0 val visited = Array(n) { BooleanArray(n){false} } for (i in 0 until n){ if (!visited[i][i]){ network(c..
알고리즘 스터디_문제풀이
2020. 8. 26. 15:12