questions2 = [
{
time: "0:18",
question: "Write some pseudocode.",
answers: [
"Select this then continue",
],
correct: 0
},
{
time: "1:04",
question: "Write some pseudocode.",
answers: [
"Select this then continue",
],
correct: 0
},
{
time: "3:33",
question: "Where can you find the 2nd smallest?",
answers: [
"Select this then continue",
],
correct: 0
},
]
yt2 = new YtQuiz("n2yUzOi-4to", questions2);
yt2.html();
questions3 = [
{
time: "1:18",
question: "Which number is the 5th order statistic?",
answers: [
"4",
"5",
"6",
],
correct: 1
},
{
time: "1:45",
question: "Do we need to look on both sides of the pivot?",
answers: [
"yes",
"no",
],
correct: 1
},
]
yt3 = new YtQuiz("Kr-bPIGtD3U", questions3);
yt3.html();
questions4 = [
{
time: "3:35",
question: "Do the recursive and iterative versions have the same time complexity?",
answers: [
"yes",
"no",
],
correct: 0
},
{
time: "4:02",
question: "In practice, which would you expect to be faster?",
answers: [
"recursive",
"iterative",
],
correct: 1
},
]
yt4 = new YtQuiz("VyLVkHg0haU", questions4);
yt4.html();