Guster_Q
Check me out on the web at Free Web Space and Site Hosting -- Freeservers.com or at my blog.
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Gary Daniels and Evan Goldring - Mock whiteboard problem
Mar 23, 2005 at 3:59 PMFunction isPalendrome(ByVal a As String) As Boolean
If a.Length < 2 Then Return True
If a.Chars(0) = a.Chars(a.Length - 1) Then
a = a.Remove(a.Length - 1, 1)
If a.Length > 0 Then a = a.Remove(0, 1)
Return isPalendrome(a)
End If
Return False
End Function