Treegram

Daily Binary Tree Word Puzzle

How To Play

You're given a set of letters. Place them one at a time into the nodes of a binary tree. Once every letter is placed, the game reads the tree back out four different ways — find at least two that spell different valid words and you've got a solution.

The four traversals

     1
    / \
   2   3
  /   / \
 4   5   6

Example

Letters: A D E E L P S

     p
    / \
   l   s
  / \   \
 e   a   e
          \
           d

Pre-order: pleased
In-order: elapsed

Trees with 3 valid words are rarer and worth more. Keep discovering different trees to fill your progress bar for the day!

0/0 trees found