Keep Multiplying Found Values by Two

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:
If
originalis found innums, multiply it by two (i.e., setoriginal = 2 * original).Otherwise, stop the process.
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;
}
}




