Skip to content

jiong-han/leetlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

leetlist

Overview

Golang program extacts leetcode questions as list with customized filter.

Feature

  • No username, password required
  • Customizable filter
  • lightweight

Uasge

package main

import "github.com/jionghann/leetlist"

func main() {
	if err := leetlist.Extract("medium.csv", func(q leetlist.Question) bool {
		return q.Difficulty == "Medium"
	}); err != nil {
		panic(err)
	}
}
export cookie = "{COOKIE_GOES_HERE}"
go run main.go

See example for more details

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages