FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/String/IsPalindrome.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
/
String
/
IsPalindrome.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (32 loc) · 1.37 KB
Breadcrumbs
JavaScript
/
String
/
IsPalindrome.js
Copy path
File metadata and controls
37 lines (32 loc) · 1.37 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
/**
*
@function
isPalindromeIterative
*
@description
isPalindromeIterative function checks whether the provided input is palindrome or not
*
@param
{
String | Number
} x - The input to check
*
@return
{
boolean
} - Input is palindrome or not
*
@see
[Palindrome](https://en.wikipedia.org/wiki/Palindrome)
*/
/*
* Big-O Analysis
* Time Complexity
- O(N) on average and worst case scenario as input is traversed in linear fashion
- O(1) on best case scenario if the input already is a string (otherwise toString() method takes O(N))
and the first & last characters don't match, triggering an early return
* Space Complexity
- O(1)
*/
export
function
isPalindromeIterative
(
x
)
{
if
(
typeof
x
!==
'string'
&&
typeof
x
!==
'number'
)
{
throw
new
TypeError
(
'Input must be a string or a number'
)
}
// Convert x to string whether it's number or string
const
string
=
x
.
toString
(
)
const
length
=
string
.
length
if
(
length
===
1
)
return
true
// Apply two pointers technique to compare first and last elements on each iteration
for
(
let
start
=
0
,
end
=
length
-
1
;
start
<
end
;
start
++
,
end
--
)
{
// Early return if compared items are different, input is not a palindrome
if
(
string
[
start
]
!==
string
[
end
]
)
return
false
}
// If early return in condition inside for loop is not reached, then input is palindrome
return
true
}
Back
|
FazBrowse Home
|
New Git URL