Company: OPTUM
Difficulty: medium
Project Launch Coding Test Question 1 Project Launch As a project manager, Emily is overseeing the launch of several marketing campaigns. She has X different campaign ideas and can combine these ideas to create a powerful new marketing strategy. She can use at most Y ideas in any combination to craft a new marketing approach. Your task is to help Emily determine how many different marketing combinations she can craft from the existing campaign ideas and return an integer representing the total number of possible strategies, including the original ideas. Note: Return answer modulo 10000. Input Specification: input1: An integer value X, representing the number of different campaign ideas. input2: An integer value Y, representing the maximum number of ideas that can be used to create a new marketing strategy. int numberOfIdeas(int input1, int input2) Output Specification: Return an integer value representing the total number of marketing strategies (new combinations and original ideas). E