grekogecko
BAN USER
- 2of 2 votes
AnswersWrite a function which gives the length of the largest palindrome found within a string.
- grekogecko in United States| Report Duplicate | Flag | PURGE
Microsoft Software Engineer / Developer Algorithm - -2of 2 votes
AnswersWrite a function that detects if a string is a palindrome.
- grekogecko in United States| Report Duplicate | Flag | PURGE
Microsoft Software Engineer / Developer Algorithm
Hey you are right! This is about a complete graph:
*graph where every two nodes are either ...*
Kudos on the answer!
Repjosiredhima, AT&T Customer service email at Aricent
I am an architect with three years experience planning and designing commercial buildings. I am working as principal architect on ...
Repmartinskrull, Analyst at A9
Hi everyone, I am from new york,USA. I currently work in the Affiliate Marketing industry. I love all things ...
RepAmberBrook, Animator at A9
Hi everyone, Done my master of arts in specialized journalism.Also an member of society of professional journalists since 2015 ...
Reprealspellcaster4, Cloud Support Associate at Aricent
Hi, I am from PA, United states. I believe in making the impossible possible because there’s no fun in ...
RepSarahSKelly, Game Programmer at Akamai
I am Professor, and I am also a skilled fiction writer. I have a collection of novels published in the ...
Repteresawells858, Java Developer at 247quickbookshelp
I am Teresa. I work as a Software engineer at Asian Fusion Company. I was born in the US and ...
It is a regular expression which means:
- grekogecko November 12, 2014^ beginning of the string
(-)? the hyphen appear one or no times
[0-9]+ there are one or more digits sequentially
(\\.)? the period appears one or no times (\ is the escape character for the .)
[0-9]+ there are one or more digits sequentially
$ end of the string