Skip to content

Files

Latest commit

author
Mauricio Klein
Nov 1, 2019
4e0a094 · Nov 1, 2019

History

History

challenge-11

Convert ternary expression to a binary tree

Description

Given a string that contains ternary expressions. The expressions may be nested, task is convert the given ternary expression to a binary Tree

Examples

Input: "a?b:c"
Output: "(( < b > ) < a > ( < c > ))"

Input: "a?b?c:d:e"
Output: "((( < c > ) < b > ( < d > )) < a > ( < e > ))"