Skip to content

Commit 0935c36

Browse files
committed
Formats flowshop.py Python code
1 parent 020e5ca commit 0935c36

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

flowshop.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ def johnson_seq(data):
104104
def johnson_seq_var_2(data):
105105
job_count = len(data)
106106
job_ids = list(range(0, job_count))
107-
108107
l1 = []
109108
l2 = []
110109
for job_info in sorted(zip(job_ids, data), key=lambda t: min(t[1])):
@@ -114,7 +113,6 @@ def johnson_seq_var_2(data):
114113
l1.append(job_id)
115114
else:
116115
l2.insert(0, job_id)
117-
118116
return l1 + l2
119117

120118

0 commit comments

Comments
 (0)