Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/ndleah/python-mini-project
/ first
Method
first
linked_lists/linked_deque.py:8–11 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
6
class
LinkedDeque(_DoublyLinkedList):
7
8
def
first(self):
9
if
self.is_empty():
10
raise
Empty(
"Dequeu is empty"
)
11
return
self._header._next._element
12
13
def
last(self):
14
if
self.is_empty():
Callers
4
Download Audio.py
File · 0.80
get_feed_by_id
Function · 0.80
delete_feed_from_db
Function · 0.80
jquery-3.3.1.min.js
File · 0.80
Calls
2
Empty
Class · 0.70
is_empty
Method · 0.45
Tested by
no test coverage detected