How to peek front of deque without popping?
TL;DR: assuming your deque is called d, just inspect d[0], since the “leftmost” element in a deque is the front (you might want to test before the length of the deque to make sure it’s not empty). Taking @asongtoruin’s suggestion, use if d: to test whether the deque is empty (it’s equivalent to if len(d) … Read more