Skip to content

Latest commit

 

History

History

challenge-11

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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