Idea: turn a TI-84/ Gameboy/DS into a meshtastic client

Links RSS
Author ArgentumCation Posts Notes
License CC-BY-NC-SA 4.0+ Updated

Two pointer


Sliding Window


1
2
3
4
5
6
7
8
queue = Queue(root)
while len(queue) > 0:
current = queue.pop()
for child in current.children:
  if condition(child):
    return
  queue.push(child)
return None