mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-09-17 01:20:38 +03:00
feat: start enum val with buffer, count from top
It is good to have buffers between enum values. And start counting from the "top of the hierarchy" value, the Director, to the bottom because it is unlikely that a lot of values will be added on top of the Director.
This commit is contained in:
@@ -69,9 +69,9 @@
|
||||
"\n",
|
||||
"class Rank(Enum):\n",
|
||||
"\n",
|
||||
" OPERATOR = 0\n",
|
||||
" SUPERVISOR = 1\n",
|
||||
" DIRECTOR = 2\n",
|
||||
" OPERATOR = 30\n",
|
||||
" SUPERVISOR = 20\n",
|
||||
" DIRECTOR = 10\n",
|
||||
"\n",
|
||||
"\n",
|
||||
"class Employee(metaclass=ABCMeta):\n",
|
||||
|
@@ -5,10 +5,9 @@ from enum import Enum
|
||||
|
||||
class Rank(Enum):
|
||||
|
||||
OPERATOR = 0
|
||||
SUPERVISOR = 1
|
||||
DIRECTOR = 2
|
||||
|
||||
OPERATOR = 30
|
||||
SUPERVISOR = 20
|
||||
DIRECTOR = 10
|
||||
|
||||
class Employee(metaclass=ABCMeta):
|
||||
|
||||
|
Reference in New Issue
Block a user