<aside> 💡 1. ProblemType은 MULTIPLE_CHOICE, FILL_IN_THE_BLANK, SHORT_ANSWER_QUESTION 3개입니다. 오타 안나게 주의해주세요.
2. 필드명에 Id 들어간 필드 빼주셔야 합니다.
difficulty는 난이도인데 아래 예시처럼 비워주세요! GPT 돌려서 일괄적으로 채울 겁니다.
List형식으로 문제 넣어주세요. [문제1, 문제2, …]
</aside>
<aside> 💡 1. 객관식 문제: 첫 번째 보기가 정답이 되도록 설정해주세요. 아래 3개는 고정입니다.
problemContent.numberOfBlanks: 0,
problemAnswers.blankPosition: null,
problemAnswers.correctAnswerText: null
빈칸 문제: 빈칸이 n개 일 경우, 보기의 상위 n개가 순서를 맞춰서 정답이 되도록 설정해주세요.
주관식 문제: 쉽습니다, 아래 필드만 주의해주세요.
problemContent.numberOfBlanks: 0, problemChoices: [], (null 하면 안됨)
problemAnswers.blankPosition: null, problemAnswers.correctChoice: null
참고로 문제 받아 올 때는 보기 순서 섞으니까 걱정 안하셔도 됩니다.
</aside>
아래 유형 별로 예시 첨부하니 꼼꼼히 읽어보고 작성해주세요..!
[
{
"title": "배열의 최대값 찾기",
"problemType": "MULTIPLE_CHOICE",
"category": "알고리즘",
"difficulty": ,
"problemContent": {
"content": "배열이 주어질 때, 배열의 요소 중 가장 큰 값을 찾아서 반환하는 프로그램을 작성하세요. 배열은 정수로만 구성되어 있으며, 배열의 크기는 1 이상 100 이하입니다.",
"numberOfBlanks": 0 // 객관식은 빈칸 개수 0개
},
"problemChoices": [
{
"choiceText": "배열을 정렬한 후 마지막 요소를 반환한다." // 1번 보기
},
{
"choiceText": "배열의 각 요소를 반복하며 가장 큰 값을 추적하여 반환한다." // 2번 보기
},
{
"choiceText": "배열의 첫 번째 요소를 최대값으로 설정하고, 배열을 순회하며 최대값을 갱신한다." // 3번 보기
},
{
"choiceText": "배열의 요소를 모두 더한 값을 반환한다." // 4번 보기
}
],
"problemAnswers": [
{
"blankPosition": null, // 객관식일 경우 null
"correctChoice": {
"choiceText": "배열을 정렬한 후 마지막 요소를 반환한다." // 정답 보기의 text
},
"correctAnswerText": null // 객관식일 경우 null
}
]
},
{
"title": "문자열에서 특정 문자 개수 세기",
"problemType": "MULTIPLE_CHOICE",
"category": "문자열",
"difficulty": ,
"problemContent": {
"content": "주어진 문자열에서 특정 문자가 몇 번 나타나는지 세는 프로그램을 작성하세요.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "문자열을 순회하며 각 문자를 비교하여 특정 문자의 개수를 세기."
},
{
"choiceText": "문자열을 정렬한 후 특정 문자가 몇 개 있는지 세기."
},
{
"choiceText": "문자열에서 특정 문자만 추출하여 그 길이를 반환하기."
},
{
"choiceText": "문자열을 대문자로 변환한 후 특정 문자의 개수를 세기."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "문자열을 순회하며 각 문자를 비교하여 특정 문자의 개수를 세기."
},
"correctAnswerText": null
}
]
}
]
[
{
"title": "변수 문제 예시",
"problemType": "FILL_IN_THE_BLANK",
"category": "변수",
"difficulty": ,
"problemContent": {
"content": "x = 10\\ny = 5\\nresult = x + y\\nprint('The result is:', $blank1$)",
"numberOfBlanks": 1
},
"problemChoices": [
{
"choiceText": "result" // 첫 번째 빈칸 답과 매핑
},
{
"choiceText": "x"
},
{
"choiceText": "y"
},
{
"choiceText": "10"
}
],
"problemAnswers": [
{
"blankPosition": 1, // 첫 번째 보기와 매핑
"correctChoice": {
"choiceText": "result"
}
"correctAnswerText": null
}
]
},
{
"title": "함수의 활용 문제 예시",
"problemType": "FILL_IN_THE_BLANK",
"category": "함수의 활용",
"difficulty": ,
"problemContent": {
"content": "def multiply(a, b):\\n return a * b\\nresult = multiply($blank1$, $blank2$)\\nprint(result)",
"numberOfBlanks": 2
},
"problemChoices": [
{
"choiceText": "5" // 첫 번째 빈칸 답과 매핑
},
{
"choiceText": "10" // 두 번째 빈칸 답과 매핑
},
{
"choiceText": "2"
},
{
"choiceText": "4"
}
],
"problemAnswers": [
{
"blankPosition": 1, // 첫 번째 보기와 매핑
"correctChoice": {
"choiceText": 5"
}
"correctAnswerText": null
},
{
"blankPosition": 2, // 두 번째 보기와 매핑
"correctChoice": {
"choiceText": 10"
},
"correctAnswerText": null
}
]
}
]
[
{
"title": "문자열 슬라이싱 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "문자열",
"difficulty": ,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\ns = 'Python Programming'\\nprint(s[0:6])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "Python"
}
]
},
{
"title": "조건문 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "조건문",
"difficulty": ,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nx = 10\\ny = 20\\nif x < y:\\n print('x는 y보다 작다')\\nelse:\\n print('x는 y보다 크다')",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "x는 y보다 작다"
}
]
}
]