[
{
"title": "이진 탐색의 시간 복잡도",
"problemType": "MULTIPLE_CHOICE",
"category": "탐색 알고리즘",
"difficulty": 4,
"problemContent": {
"content": "이진 탐색(Binary Search) 알고리즘을 사용하여 정렬된 배열에서 요소를 검색할 때의 시간 복잡도는 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "O(log n)"
},
{
"choiceText": "O(n)"
},
{
"choiceText": "O(n^2)"
},
{
"choiceText": "O(1)"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "O(log n)"
},
"correctAnswerText": null
}
]
},
{
"title": "탐색 문제 1",
"problemType": "FILL_IN_THE_BLANK",
"category": "탐색",
"difficulty": 2,
"problemContent": {
"content": "주어진 리스트에서 30의 인덱스를 찾는 코드를 완성하세요.\\nnumbers = [10, 20, 30, 40, 50]\\nindex = $blank1$.index($blank2$)\\nprint(index)",
"numberOfBlanks": 2
},
"problemChoices": [
{
"choiceText": "numbers"
},
{
"choiceText": "30"
},
{
"choiceText": "index"
},
{
"choiceText": "find"
}
],
"problemAnswers": [
{
"blankPosition": 1,
"correctChoice": {
"choiceText": "numbers"
},
"correctAnswerText": null
},
{
"blankPosition": 2,
"correctChoice": {
"choiceText": "30"
},
"correctAnswerText": null
}
]
},
{
"title": "문자열 슬라이싱",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "자료형",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\ntext = 'Programming'\\nprint(text[-4:])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "ming"
}
]
}
]