일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- codesandbox
- 컴퓨터 네트워크
- JavaScript
- 프로그래머스 완전탐색
- 백준
- design pattern
- 프로그래밍 언어론
- 자바 공부
- react firebase
- 디자인 패턴
- 코딩테스트 고득점 Kit 완전탐색
- NextJS
- websocket
- useState
- Java
- react
- react hook
- 코딩테스트 고득점 Kit
- vanillaJS
- 리액트 훅
- 코틀린
- 자바스크립트
- 데이터모델링과마이닝
- React JS
- 프로그래머스 자바
- 장고
- useEffect
- 자바
- 리액트
- 프로그래머스
Archives
- Today
- Total
목록게임 맵 최단거리 (1)
기록하는 개발자

https://school.programmers.co.kr/learn/courses/30/lessons/1844 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr function solution(maps) { const dx = [0, 0, 1, -1]; const dy = [1, -1, 0, 0]; const y = maps.length-1; const x = maps[0].length - 1; const queue = [[0, 0, 1]]; while (queue.length) { const now = queue.shift(); if (now[0] == ..
Algorithm
2023. 8. 7. 20:47