멀티 문제

배틀 모드

대기 Pick

 {
    "title": "2차원 리스트 순회",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "2차원 리스트",
    "difficulty": 3,
    "problemContent": {
      "content": "2차원 리스트의 모든 요소를 순서대로 순회하며 출력하는 코드를 완성하세요.\\nmatrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]\\nfor row in matrix:\\n    for $blank1$ in $blank2$:\\n        print(num, end=' ')\\n    print()",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "num"
      },
      {
        "choiceText": "row"
      },
      {
        "choiceText": "col"
      },
      {
        "choiceText": "matrix"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "num"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "row"
        },
        "correctAnswerText": null
      }
    ]
  },
    {
      "title": "리스트 합",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "1차원 리스트",
      "difficulty": 1,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnumbers = [1, 2, 3]\\nprint(sum(numbers))",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "6"
          }
      ]
  },

Falcon Pick

{
    "title": "2차원 리스트 요소 접근",
    "problemType": "MULTIPLE_CHOICE",
    "category": "2차원 리스트",
    "difficulty": 3,
    "problemContent": {
      "content": "2차원 리스트에서 첫 번째 행의 두 번째 요소에 접근하는 올바른 방법은 무엇입니까?",
      "numberOfBlanks": 0
    },
    "problemChoices": [
      {
        "choiceText": "list[0][1]"
      },
      {
        "choiceText": "list[1][2]"
      },
      {
        "choiceText": "list[1][1]"
      },
      {
        "choiceText": "list[0, 1]"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": null,
        "correctChoice": {
          "choiceText": "list[0][1]"
        },
        "correctAnswerText": null
      }
    ]
  },
  

지훈 픽


{
    "title": "상수와 변수의 차이점",
    "problemType": "MULTIPLE_CHOICE",
    "category": "변수",
    "difficulty": 1,
    "problemContent": {
      "content": "다음 중 상수와 변수의 차이점에 대한 설명으로 올바른 것은 무엇입니까?",
      "numberOfBlanks": 0
    },
    "problemChoices": [
      {
        "choiceText": "상수는 값을 변경할 수 없고, 변수는 값을 변경할 수 있다."
      },
      {
        "choiceText": "상수는 값을 변경할 수 있고, 변수는 값을 변경할 수 없다."
      },
      {
        "choiceText": "상수와 변수는 모두 값을 변경할 수 없다."
      },
      {
        "choiceText": "상수와 변수는 모두 값을 변경할 수 있다."
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": null,
        "correctChoice": {
          "choiceText": "상수는 값을 변경할 수 없고, 변수는 값을 변경할 수 있다."
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "실수형으로 변환",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "자료형",
    "difficulty": 2,
    "problemContent": {
      "content": "변수 x와 y의 합을 실수형으로 변환하여 출력하세요.\\nx = 10\\ny = 3.14\\nz = $blank1$(x + y)\\nprint(z)",
      "numberOfBlanks": 1
    },
    "problemChoices": [
      {
        "choiceText": "float"
      },
      {
        "choiceText": "int"
      },
      {
        "choiceText": "str"
      },
      {
        "choiceText": "bool"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "float"
        },
        "correctAnswerText": null
      }
    ]
  }

예림 pick

,
  {
    "title": "사용자로부터 입력받아 인사하기",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "표준입출력",
    "difficulty": 3,
    "problemContent": {
      "content": "# 사용자로부터 이름을 입력받아 인사말을 출력하는 코드를 완성하세요.\\nname = $blank1$\\nprint('Hello,', name)",
      "numberOfBlanks": 1
    },
    "problemChoices": [
      {
        "choiceText": "input()"
      },
      {
        "choiceText": "read()"
      },
      {
        "choiceText": "scan()"
      },
      {
        "choiceText": "get()"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "input()"
        },
        "correctAnswerText": null
      }
    ]
  },