| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Each child in a list should have a unique "key" prop.
- 티스토리 성능
- github lfs
- camera access
- Can't resolve
- augmentedDevice
- silent printing
- rolldown
- 이미지 데이터 타입
- ffi-napi
- vercel git lfs
- animation
- html
- react-native
- ELECTRON
- custom printing
- camera permission
- nextjs
- device in use
- github pdf
- npm package
- react-native-dotenv
- adb pair
- github 100mb
- adb connect
- Recoil
- electron-packager
- dvh
- Failed to compiled
- Git
- Today
- Total
목록2022/04/01 (2)
Bleeding edge
https://programmers.co.kr/learn/courses/30/lessons/43162 코딩테스트 연습 - 네트워크 네트워크란 컴퓨터 상호 간에 정보를 교환할 수 있도록 연결된 형태를 의미합니다. 예를 들어, 컴퓨터 A와 컴퓨터 B가 직접적으로 연결되어있고, 컴퓨터 B와 컴퓨터 C가 직접적으로 연결되어 있 programmers.co.kr function solution(n, computers){ let answer = 0; let visited = []; for (let i = 0; i{ if(index!==now&&graph[now][index]===1&&visited[index]===false){ //[connected index] visited process dfs(graph, ind..
Value : String, Number, Object, Boolean 과 같이 한 개의 Value를 가지고 있음.(Object도 그 위치만의 한개의 값이다) Expression : 1개이상의 Value가 모여 Value를 만든다.(4칙 연산도 이중하나) Statement : If, For, While, Switch와 같이, Expression이나 Value를 통해서 행동을 제어한다. Identifier : 자바스크립트에서 이름을 붙일 때 사용하는 단어(일명 식별자) 식별자는 변수명 함수명 속성명 메소드명 식별자 규칙 키워드를 사용하면 안 된다. 숫자로 시작하면 안 된다. 특수 문자는 _와 $만 허용된다. 공백 문자를 포함할 수 없다. 식별자 관례 1. 생성자 함수의 이름은 항상 대문자로 시작한다. 예시..