일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CSS
- c++
- C언어
- 풀이
- hackctf
- 숙명여자대학교 정보보안 동아리
- BOJ Python
- 기계학습
- c
- 백준
- WarGame
- BOJ
- 드림핵
- XSS Game
- 숙명여자대학교 정보보안동아리
- 머신러닝
- PHP 웹페이지 만들기
- HTML
- hackerrank
- Javascript
- The Loard of BOF
- siss
- 생활코딩
- 파이썬
- Python
- lob
- Sookmyung Information Security Study
- 자료구조 복습
- 웹페이지 만들기
- SWEA
- Today
- Total
목록2021 SISS 21기 활동/여름방학 C언어 (17)
혜랑's STORY

# 문제 # 풀이 int* countingSort(int arr_count, int* arr, int* result_count) { *result_count = 100; int *list = malloc(sizeof(int)*(*result_count)); memset(list, 0, sizeof(int)*(*result_count)); for(int i=0; i

# 문제 # 풀이 int* rotateLeft(int d, int arr_count, int* arr, int* result_count) { *result_count = arr_count; int *result = malloc(sizeof(int)*(*result_count)); int temp; for(int i=0; i

# 문제 # 풀이 int camelcase(char* s) { int cnt=1; for(int i=0; i= 'A' && s[i]

# 문제 # 풀이 char* pangrams(char* s) { int alpha[26]; memset(alpha, 0, sizeof(alpha)); for(int i=0; i='A' && s[i]='a' && s[i]

# 문제 # 풀이 char* caesarCipher(char* s, int k) { for(int i=0; i='A'&&s[i]='a' && s[i]

2주차 과제 1. 문제 2. 풀이 int birthdayCakeCandles(int candles_count, int* candles) { int max = 0, cnt = 0; for(int i=1; i

2주차 C언어 1. 문제 2. 풀이 int divisors(int n) { int cnt = 0; for(int i=1; i