Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 357 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 357 Bytes

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 > ))"