Pinned Loading
-
List comprehension to check if one l...
List comprehension to check if one list contains element of another list 1seq_nums = [1, 2, 3, 4, 5]
2odd_nums = [1, 3, 5, 7, 9]
34even_nums = [t for t in seq_nums if t not in odd_nums]
-
JavaScript Chunck Array into Groups
JavaScript Chunck Array into Groups 1function chunkArrayInGroups(arr, size) {
2const numOfChuncks = arr.length / size
3let arrCopy = arr.slice()
4let chunckedArray = []
5let startSlice = 0
-
deploy-machine-learning-model
deploy-machine-learning-model PublicLearning to build and deploy a ML model into proudction
Jupyter Notebook 1
-
-
-
hdb_resale_coordinates_api.py
hdb_resale_coordinates_api.py 1# This may take a while...
2latitude = []
3longitude = []
4blk_no = []
5road_name = []
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.