VER003-"Evaluate Me" Editorial

PROBLEM LINKS
Contest

DIFFICULTY
medium

PREREQUISITES
simple concept of stack

PROBLEM STATEMENT
Given n digits your task is to find if using “+” , “-” , “*” you can derive v.

Quick Explanation
Find all the permutation of the digits with operators to find the value v.

EDITORIALIST’S SOLUTION
here