-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquestionDataclass.py
36 lines (30 loc) · 1.59 KB
/
questionDataclass.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
class questionDataclass:
def __init__(self,
*,
questionNo:int=-1,
acRate:float=None,
difficulty:str=None,
isFavor:bool=False,
paidOnly:bool=False,
title:str=None,
slug:str=None,
url:str=None,
topics:list=None,
hasSolution:bool=None,
hasVideoSolution:bool=None):
self.questionNo = questionNo
self.acRate = acRate
self.difficulty = difficulty
self.level = self.difficulty
self.isFavor = isFavor
self.paidOnly = paidOnly
self.title = title
self.slug = slug
self.url = 'https://leetcode.com/problems/' + slug
self.topics = topics
self.hasSolution = hasSolution
self.hasVideoSolution = hasVideoSolution
def __str__(self):
return f"questionNo: {self.questionNo}, acRate: {self.acRate}, difficulty: {self.difficulty}, level: {self.level}, isFavor: {self.isFavor}, paidOnly: {self.paidOnly}, title: {self.title}, slug: {self.slug}, url: {self.url}, topics: {self.topics}, hasSolution: {self.hasSolution}, hasVideoSolution: {self.hasVideoSolution}"
def __repr__(self) -> str:
return f"questionNo: {self.questionNo}, acRate: {self.acRate}, difficulty: {self.difficulty}, level: {self.level}, isFavor: {self.isFavor}, paidOnly: {self.paidOnly}, title: {self.title}, slug: {self.slug}, url: {self.url}, topics: {self.topics}, hasSolution: {self.hasSolution}, hasVideoSolution: {self.hasVideoSolution}"