questions2 = [
{
time: "2:19",
question: "What is a good estimate for the total running time?",
answers: [
"2n + 1",
"1/2 n",
"2n^2",
],
correct: 0,
},
{
time: "5:04",
question: "What is the asymptotic running time?",
answers: [
"O(n)",
"O(n^2)",
"O(n log n)",
],
correct: 0,
}
]
yt2 = new YtQuiz("X2pZ38jLKDA", questions2);questions4 = [
{
time: "0:34",
question: "What is your algorithm?",
answers: ["This is just here to make the video pause."],
correct: 0,
},
{
time: "4:12",
question: "What is the asymptotic running time of `FindCommon`?",
answers: [
"O(n)",
"O(n^2)",
"O(n log n)",
],
correct: 1,
}
];
yt4 = new YtQuiz("cZe0N2pSEPw", questions4)