This file contains 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
from selenium import webdriver | |
from selenium.webdriver.support.ui import Select | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.firefox.options import Options | |
from bs4 import BeautifulSoup | |
import numpy as np | |
import pandas as pd | |
import sys | |
This file contains 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
//returns length of the given array | |
function length(arr){ | |
if (arr[0]==undefined) | |
return 0; | |
return lengthFinder(arr,0); | |
} | |
function lengthFinder(arr, counter){ | |
if (arr[counter+1]) | |
return lengthFinder(arr, counter+1); |