Skip to content

Commit

Permalink
new solution
Browse files Browse the repository at this point in the history
  • Loading branch information
filipmacek committed Oct 2, 2022
1 parent 5d5e4cd commit e062cc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion leetCode/35_search_insert_position.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
number: 35
difficulty: easy
tags: ['Array','Binary Search']
solved: false
solved: true
---
"""

Expand Down
2 changes: 1 addition & 1 deletion src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function writeReadme(solutions: Solution[]){
const numEasy = solutionsSolved.filter((item)=> item.difficulty === 'easy').length
result += `\n${getIcon("easy")} Easy: ${numEasy}\n`
const numMedium = solutionsSolved.filter((item)=> item.difficulty === 'medium').length
result += `\n:${getIcon("medium")} Medium: ${numMedium}\n`
result += `\n${getIcon("medium")} Medium: ${numMedium}\n`
const numHard = solutionsSolved.filter((item)=> item.difficulty === 'hard').length
result += `\n${getIcon('hard')} Hard: ${numHard}\n`
result +=`\n__Total__: ${solutionsSolved.length}\n`
Expand Down

0 comments on commit e062cc0

Please sign in to comment.