questions1 = [
{
time: "5:41",
question: "What is the recurrence equation for Fibonacci?",
answers: [ ],
correct: "T(n) = T(n-1) + T(n-2)"
},
{
time: "6:04",
question: "What is the time complexity?",
answers: [
"O(n)",
"O(lg n)",
"O(n^2)",
"O(2^n)"
],
correct: 3
},
]
yt1 = new YtQuiz("uG5cYwHwAhA", questions1);
yt1.html();