Skip to content

Instantly share code, notes, and snippets.

@tanmaiaccion
Created May 17, 2019 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanmaiaccion/8d72d59a8f5c8a434b73a9b4cb8e0be8 to your computer and use it in GitHub Desktop.
Save tanmaiaccion/8d72d59a8f5c8a434b73a9b4cb8e0be8 to your computer and use it in GitHub Desktop.
python problem statements
#use yield to make get calls
import requests
urls = ["https://jsonplaceholder.typicode.com/todos/1",
"https://jsonplaceholder.typicode.com/todos/2"]
#find number in a column-sorted and row-sorted 2D list
arr = [[1, 5, 9, 11],
[14, 20, 21, 26],
[30, 34, 43, 50]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment