def is_palin(string, i, j):
while j > i:
if string[i] != string[j]:
return False
i += 1
j -= 1
Your byte size news and commentary from Silicon Valley the land of startup vanities, coding, learn-to-code and unicorn billionaire stories.
The airtable smart sheets now has an app platform called Airtable Blocks, which allows developers to add custom code, and build apps quickly...
No comments:
Post a Comment