


JavaScript program checks if all array elements can be converted to pronic numbers by rotating numbers
Plonic numbers are also called rectangular numbers. Plonic numbers are multiples of two consecutive numbers. We will get an array of integers and we can rotate the numbers in any direction a certain number of times to get all combinations. For any combination produced by rotating numbers, if each array element can be converted to a Plonik number, then we will print true, otherwise we will print false.
Pronic number
First, let’s discuss the proton number: The proton number is the product of two consecutive numbers.
Mathematically, if we have an integer x whose next consecutive number is x 1, and let the number k be the product of both of them, this means: k = (x)*(x 1). Some examples of Pronic numbers are:
0 is the product of 0 and 1.
1 is the product of 1 and 2.
6 is the product of 2 and 3.
-> 12, 20, 30, 42, 56, 72, 90, 110, 132, 156, 182, 210, 240, 272, etc.
Example
Suppose we have an array:
{ 21, 65, 227, 204, 2}
Output: Yes
illustrate:
For the zeroth index: 21, after one rotation it can be converted to 12, which is the product of 3 and 4, so it is a Planck number.
For the first index: 65, after one rotation it can be converted to 56, which is the product of 7 and 8 and therefore a Plonic number.
For the second index: 227, it can be converted to 272 after one rotation, which is a pronic number.
Similarly, 204 to 420 and 2 itself is a proton number.
method
We have seen the code sample, now let’s get into the steps -
First, we will define a function to rotate a given number. An integer will be passed as argument and will be converted to a string.
Using the substring method, we rotate the string to the right, then convert it back to a number again and back.
We will define the pronic function to check if the current number is pronic.
We will find the lower bound of the square root of the current number and multiply it by its consecutive numbers to determine if the current number is a proton.
We will define a function to find the number of digits in the current number by converting it to a string.
In the main function we will iterate through the array and for each element we will rotate it by its length or until we find the Pronic number.
If we find any number after all iterations that is not a pronic number and we cannot convert it to a pronic number, then we will not print yes.
Example
In the following example, we check if all array elements can be converted to Plonik numbers by rotating the numbers. The input and expected output are given below.
Input: Array = [21, 65, 227, 204, 2]
Expected output: Yes
// function to rotate the digits function rotate(num){ // converting integer to string var str = num.toString(); // putting first index value to last str = str.substring(1) + str.substring(0,1); // converting back string to integer num = parseInt(str); return num; } // function to check whether current number if pronic number or not function isPronic(num){ // getting square root of the current number var cur = Math.sqrt(num); // taking floor of cur cur = Math.floor(cur); if(cur*(cur+1) == num) { return true; } else { return false; } } // function to find the length of the current integer function number_length(num){ var str = num.toString() var len = str.length; return len; } // function to check whether array is pronic or not function check(arr){ var len = arr.length; for(var i =0; i<len; i++){ // getting length of the current number var cur = number_length(arr[i]); while(cur--){ if(isPronic(arr[i])){ break; } arr[i] = rotate(arr[i]); } if(isPronic(arr[i]) == false){ return false; } } return true; } var arr = [21, 65, 227, 204, 2] console.log("Array:", JSON.stringify(arr)) if(check(arr)){ console.log("The elements of array can be converted to pronic numbers."); } else{ console.log("The elements of array can't be converted to pronic numbers."); }
Output
Array: [21,65,227,204,2] The elements of array can be converted to pronic numbers.
Time and space complexity
The time complexity of the above code is O(N), where N is the size of the array. Here we get an extra number-sized logarithmic factor for looping over the array and taking its square root, but since the maximum length of a given integer is very small, there is no impact on linear time complexity.
The space complexity of the above code is constant or O(1) since we are not using any extra space here.
in conclusion
In this tutorial we implemented a JavaScript program to find the weather, we convert each element of the array into a pronic number simply by rotating its number left or right. We defined some functions to rotate numbers, check if they are protons, and get the number of digits. The time complexity of the above code is O(N) and the space complexity is O(1).
The above is the detailed content of JavaScript program checks if all array elements can be converted to pronic numbers by rotating numbers. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.
