Skip to main content

Command Palette

Search for a command to run...

Keep Multiplying Found Values by Two

Published
1 min read
Keep Multiplying Found Values by Two
G

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.

I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.

You are given an array of integers nums. You are also given an integer original which is the first number that needs to be searched for in nums.

You then do the following steps:

  1. If original is found in nums, multiply it by two (i.e., set original = 2 * original).

  2. Otherwise, stop the process.

  3. Repeat this process with the new number as long as you keep finding the number.

Return the final value of original.

LeetCode Problem - 2154

class Solution {
    public int findFinalValue(int[] nums, int original) {
        // Initialize the final value to the original value
        int ans = original;

        // Iterate through the array
        for (int i = 0; i < nums.length; i++) {
            // If the current number is equal to the current final value, double the final value and reset the loop
            if (nums[i] == ans) {
                ans *= 2;
                i = -1; // Reset the loop
            }
        }

        // Return the final value
        return ans;
    }
}

More from this blog

S

Software and Performance Testing Insights

462 posts

Results-Driven Agile QA Specialist | Expert in Mobile & Web Testing | Proficient in Test Planning, Execution, and Root Cause Analysis.