Lockboxes Problem

Поделиться
HTML-код
  • Опубликовано: 17 ноя 2024

Комментарии • 3

  • @kingsleyakpan3828
    @kingsleyakpan3828 10 месяцев назад +1

    Good one Nuux👍👍👍👍

    • @nuuX
      @nuuX  10 месяцев назад

  • @nuuX
    @nuuX  10 месяцев назад +2

    Final result :
    total_boxes = len(boxes)
    setofkeys = [0]
    counter = 0
    index = 0
    while index < len(setofkeys):
    setkey = setofkeys[index]
    for key in boxes[setkey]:
    if 0 < key < total_boxes and key not in setofkeys:
    setofkeys.append(key)
    counter += 1
    index += 1
    return counter == total_boxes - 1