1. 문제https://www.acmicpc.net/problem/9506 2. 풀이#include #include #define SIZE 1000typedef struct{ int data[SIZE]; int front, rear;} QueueType;void init(QueueType *Q){ Q->front = Q->rear = -1;}int isEmpty(QueueType *Q){ return Q->front == Q->rear;}int isFull(QueueType *Q){ return Q->rear == SIZE-1;}void enqueue(QueueType *Q, int e){ if(!isFull(Q)){ Q->rear++; Q->d..
1. 문제https://www.acmicpc.net/problem/5086 2. 풀이#include int main(void){ int tests[10001][2]; int results[10001]; int count = 0; int flag = 0; char factor[] = "factor\0"; char multiple[] = "multiple\0"; char neither[] = "neither\0"; while(1){ scanf("%d %d", &tests[count][0], &tests[count][1]); if(!tests[count][0] && !tests[count][1]){ results[count..
1. 문제https://www.acmicpc.net/problem/2745 2. 풀이#include #include #include int main(void) { int baseB; int resultOfBase10 = 0; char N[100]; scanf("%s", N); scanf("%d", &baseB); int length = strlen(N); if(baseB >= 2 && baseB = 65 && N[i]
1. 문제https://www.acmicpc.net/problem/2566 2. 풀이#include int main(void) { int digits[10][10]; int max = 0; int maxRow, maxCol; for(int i = 0; i max){ max = digits[i][j]; maxRow = i; maxCol = j; } } } printf("%d\n%d %d", max, maxRow+1, maxCol+1);}
1. forEach와 map의 차이forEach는 새로운 배열을 return 하지 않기 때문에 Virtual Dom에서 변경 사항이 없다고 판단하고 리랜더링하지 않는다.따라서 특정 결과값을 얻기 위해서는 map을 사용해야 한다. * li로 전달해줄 때는 자식 요소를 찾을 수 있는 고유의 key 값이 필요하다.Food 컴포넌트에 key 속성 전달! 1) FoodContainer.jsimport React from 'react';import Food from './Food';const FoodContainer = () => { const foods = [ { id : 1, name : "샐러드", }, { id : 2, name : "치킨", }, ..
1. 문제https://www.acmicpc.net/problem/2941 2. 풀이#include int main(void){ char str[101]; int count = 0; scanf("%s", str); for (int i = 0; str[i] != '\0'; i++){ count ++; if(str[i] == '=') { if (str[i-1] == 'c' || str[i-1] == 's') { count--; } if (str[i-1] == 'z'){ if (str[i-2] == 'd') { count -= 2; } else { count--; } ..
- Total
- Today
- Yesterday
- 브라우저
- 재귀케이스
- 삼각형과세변
- 배수
- C언어
- 직사각형
- 과제안내신분
- 파이썬
- SW생명주기
- 25304
- 브라우저뜻
- 개발계발
- 데이터추상화
- 배수와약수
- SWLIfeCycle
- python
- C99
- 백준
- 4779
- 점근적표기
- 다음소수
- 베라의 패션
- 약수
- 재귀함수원리
- 붙임성 좋은 총총이
- 피보나치수5
- 25314
- 27323
- 약수들의합
- 알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |