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
- 레벨1
- iscomposing
- 맥에서 MSSQL
- Azure Data Studio
- 이벤트 중복 발생 현상
- 객체에서 value만 가져오기
- fill
- DB 백업 파일 복원
- 배열 중복 개수 구하기
- map
- 리액트
- 삼항연산자
- 자바스크립트
- 레벨2
- Filter
- sort
- 썸네일 생성
- mssql
- max
- reduce
- AWS EBS
- array
- fluent-ffmpeg
- substr
- MIN
- math
- +연산자
- indexof
- AWS
- 프로그래머스
Archives
- Today
- Total
목록JS (1)
3은로그

https://school.programmers.co.kr/learn/courses/30/lessons/120866 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제 코드 function solution(board) { let answer = 0; let explosion = [ [-1,-1], [-1,0], [-1,1], [0,-1], [0,1], [1, -1], [1,0], [1,1] ] for(let i = 0; i < board.length; i++){ for(let j = 0; j < board.length; j++){ if(board[i][j..
코딩테스트
2024. 3. 30. 11:15