Complete the List Implementation using user-defined methods
Software Development Engineer Interview Questions
32,870 software development engineer interview questions shared by candidates
Question: URL Shortener Implementation in Python ans # from flask import jsonify,Flask import string id_counter = 1 url_store = {} BASE62 = string.ascii_letters + string.digits def encode_base62(id): if id == 0: return BASE62[0] result = "" while id>0: result = BASE62[id%62] +result id //=62 return result def shorten_url(url): global id_counter code = encode_base62(id_counter) url_store[code] = url id_counter+=1 return f"http://shrtly.in/{code}" actual_url = "https://google.com" short_url = shorten_url(actual_url) print(short_url)
How to map the Classes to the Database in Spring boot.
Find third highest in the array in single pass
"Can you describe a time when you handled a difficult situation in a team project?"
Explain, in your own words, how SQL server catalogs and retrieves data
Tell me about yourself in precise
Did I know Android studio
Questions on BST and trees in general.
Q. No. Vowels in a given string
Viewing 3291 - 3300 interview questions