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 |
Tags
- can't getting credentials
- 반응형 페이지 좌표 변환
- Error:error:0308010C:digital envelope routines::unsupported
- ogr2ogr
- 이미지 좌표 추출
- expo
- CSS
- 김골라
- S3
- 어셈블리어
- aws ec2
- AWS CodePipeline
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- Unable to find the global bin directory
- NODE_VERSION
- 이미지 맵
- C언어
- SASS
- react
- node
- AWS CodeBuild
- rwdImageMaps
- nodejs
- netlify variables
- credential error
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- EC2
- GeoJSON object too complex/large
- 설치완료안됨
- AWS
Archives
- Today
- Total
ImFe's study
[HackerRank] FizzBuzz 본문
function fizzBuzz(n) {
// Write your code here
for(let i = 1; i <= n; i++) {
if(i % 3 === 0 && i % 5 === 0) {
console.log('FizzBuzz')
} else if(i % 3 === 0) {
console.log('Fizz');
} else if(i % 5 === 0) {
console.log('Buzz');
} else {
console.log(i);
}
}
}
'미분류' 카테고리의 다른 글
.ogg 파일 삭제안됨 (0) | 2022.02.24 |
---|---|
[INFRA] NAS 추가하기 (0) | 2022.01.03 |
[Markdown] 마크다운 문법 정리, 도움되는 Extension (0) | 2021.12.15 |
VSCODE 단축키, 팁 메모 (0) | 2021.07.02 |
VirtualBox오류 - Nonexistent host networking interface. (0x80004005) (0) | 2021.01.12 |
Comments