f-okd / leetdaily

Chrome extension for technical interview preparation. Built with React + Typescript.
https://chromewebstore.google.com/detail/leetdaily/cfhnjpngjdebepnkodkncekbdjanmnhm?hl=en
1 stars 1 forks source link

Refactor: Update problemList data structure #4

Open f-okd opened 2 months ago

f-okd commented 2 months ago

Update type of problem lists From

string[]

=>

{
  title: string; 
  difficulty: string
  questionUrl: string; 
  solutionUrl: string
}[]

Then maybe open the solution in a new tab after?