Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 740 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 740 Bytes

Prompt #1 Is the integer a palindrome?

Determine whether an integer is a palindrome. Can negative numbers be palindromes? No.

7337 returns true
1337 returns false

Prompt #2 Longest Common Prefix?

Write a function to find the longest common prefix string amongst an array of strings.

Longest common prefix for a pair of strings S1 and S2 is the longest string S which is the prefix of both S1 and S2.

As an example, longest common prefix of "abcdefgh" and "abcefgh" is "abc".

Given the array of strings, you need to find the longest S which is the prefix of ALL the strings in the array.

Example:

Given the array as:

[

  "abcdefgh",

  "aefghijk",

  "abcefgh"
]

The answer would be “a”.