We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
제출하지 않은 사람: 송준서, 오종현, 안영찬(지금 하고있네요), 유지은, 이상민, 이성준(이분은 사실 낸걸지도...), 주현상 과제 10분컷이니까 다시 제출해주세요!
몇몇 분들한테 코드리뷰를 해두었습니다. 커밋한 거에 댓글로 달아두었으니까, 각자 커밋했던 것들을 다시 찾아보면 될 것 같아요!
for(int i=0; i<N; i++){ printf("%d", N-i); }
for(int i=N; i>0; i--){ printf("%d", i); }
같은 결과지만 후자가 더 직관적인 것 같습니다.
#include <stdio.h> #include <string.h> #define ASCII_A 97 #define ASCII_Z 122 #define TRUE 1 #define FALSE 0 int main(void) { char word[100] = {}; scanf("%s", word); for (int ascii = ASCII_A; ascii <= ASCII_Z; ascii++) { // i는 97(a)부터 122(z)까지 증가 int isFinded = FALSE; for (int index = 0; index < strlen(word); index++) { if (word[index] == ascii) { // <--- 이 부분! word[index]는 char인데 int는 ascii와 비교하고 있습니다. printf("%d ", index); isFinded = TRUE; break; } } if (isFinded == FALSE) { printf("%d ", -1); } } return 0; }
https://www.acmicpc.net/problem/14681 https://www.acmicpc.net/problem/1157 https://www.acmicpc.net/problem/25305 https://www.acmicpc.net/problem/1085 어려운 배열문제 같은건 피했습니다😀
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. 저번주 과제
제출하지 않은 사람: 송준서, 오종현, 안영찬(지금 하고있네요), 유지은, 이상민, 이성준(이분은 사실 낸걸지도...), 주현상
과제 10분컷이니까 다시 제출해주세요!
2. 과제 리뷰
몇몇 분들한테 코드리뷰를 해두었습니다. 커밋한 거에 댓글로 달아두었으니까, 각자 커밋했던 것들을 다시 찾아보면 될 것 같아요!
쉬운 문제였긴 한데 코드가 이렇게 두가지로 나뉘더라구요
같은 결과지만 후자가 더 직관적인 것 같습니다.
이 문제는 char를 별다른 변환 없이도 integer와 비교할 수 있다는 것을 알면 쉽게 풀 수 있었던 것 같습니다.
사실 이 문제는 내가 제일 망한 풀이여서...😞 다른 분들은 다 잘 한 것 같아요ex) 민서 코드
3. 8주차 과제(~8/14)
https://www.acmicpc.net/problem/14681
https://www.acmicpc.net/problem/1157
https://www.acmicpc.net/problem/25305
https://www.acmicpc.net/problem/1085
어려운 배열문제 같은건 피했습니다😀
The text was updated successfully, but these errors were encountered: