FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/Maths/AutomorphicNumber.js at master · TheAlgorithms/JavaScript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
TheAlgorithms
/
JavaScript
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
5.8k
Star
34.2k
Code
Issues
21
Pull requests
192
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
Maths
/
AutomorphicNumber.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (37 loc) · 1.22 KB
Breadcrumbs
JavaScript
/
Maths
/
AutomorphicNumber.js
Copy path
File metadata and controls
40 lines (37 loc) · 1.22 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
*
@function
isAutomorphic
*
@author
[SilverDragonOfR] (https://github.com/SilverDragonOfR)
*
*
@see
[Automorphic] (https://en.wikipedia.org/wiki/Automorphic_number)
*
@description
This script will check whether a number is Automorphic or not
*
@description
A number n is said to be a Automorphic number if the square of n ends in the same digits as n itself.
*
*
@param
{
Integer
} n - the n for nth Catalan Number
*
@return
{
Integer
} - the nth Catalan Number
*
@complexity
Time: O(log10(n)) , Space: O(1)
*
*
@convention
We define Automorphic only for whole number integers. For negetive integer we return False. For float or String we show error.
*
@examples
0, 1, 5, 6, 25, 76, 376, 625, 9376 are some Automorphic numbers
*/
// n is the number to be checked
export
const
isAutomorphic
=
(
n
)
=>
{
if
(
typeof
n
!==
'number'
)
{
throw
new
Error
(
'Type of n must be number'
)
}
if
(
!
Number
.
isInteger
(
n
)
)
{
throw
new
Error
(
'n cannot be a floating point number'
)
}
if
(
n
<
0
)
{
return
false
}
// now n is a whole number integer >= 0
let
n_sq
=
n
*
n
while
(
n
>
0
)
{
if
(
n
%
10
!==
n_sq
%
10
)
{
return
false
}
n
=
Math
.
floor
(
n
/
10
)
n_sq
=
Math
.
floor
(
n_sq
/
10
)
}
return
true
}
Back
|
FazBrowse Home
|
New Git URL