Closed phi-friday closed 2 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 96.12%. Comparing base (
aed6a25
) to head (23f4147
). Report is 3 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Replace
queue
implemented usinglist
withdeque
.The implementation with
list
appears to be due to the use ofappend()
and #370 . Ifappend()
is used,deque
is more efficient, and #370 is also solved.