computation model, 1930s, Alonzo Church, formalizing a method, Turing machines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cv2 | |
| from imutils.video import WebcamVideoStream | |
| from imutils.video import FPS | |
| import imutils | |
| import numpy as np | |
| import time | |
| import dlib | |
| import cv2 | |
| import os | |
| import math |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Day 1: Report Repair | |
| ## Part 1 | |
| ---------------------------- | |
| with open("data.txt") as f: | |
| numbers = f.readlines() | |
| # print(len(numbers)) | |
| for i in range(len(numbers)-1): | |
| for j in range(i+1,len(numbers)): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cv2 | |
| import os | |
| import numpy as np | |
| import csv | |
| import pandas as pd | |
| dir = "/content/drive/MyDrive/Applied_data_Science" | |
| def absoluteFilePaths(directory): | |
| filePaths = [] | |
| for dirpath,_,filenames in os.walk(directory): |
OlderNewer