All Projects → vprusso → Youtube_tutorials

vprusso / Youtube_tutorials

Licence: gpl-3.0
Collection of scripts corresponding to LucidProgramming YouTube tutorials

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Youtube tutorials

Stock-Fundamental-data-scraping-and-analysis
Project on building a web crawler to collect the fundamentals of the stock and review their performance in one go
Stars: ✭ 40 (-94.8%)
Mutual labels:  web-scraping
Autoscraper
A Smart, Automatic, Fast and Lightweight Web Scraper for Python
Stars: ✭ 4,077 (+430.17%)
Mutual labels:  web-scraping
Scrapy Fake Useragent
Random User-Agent middleware based on fake-useragent
Stars: ✭ 520 (-32.38%)
Mutual labels:  web-scraping
Competitive Programming Score API
API to get user details for competitive coding platforms - Codeforces, Codechef, SPOJ, Interviewbit
Stars: ✭ 118 (-84.66%)
Mutual labels:  web-scraping
Basketball reference web scraper
NBA Stats API via Basketball Reference
Stars: ✭ 279 (-63.72%)
Mutual labels:  web-scraping
Awesome Web Scraping
List of libraries, tools and APIs for web scraping and data processing.
Stars: ✭ 4,510 (+486.48%)
Mutual labels:  web-scraping
raspagem-de-dados-fatec
📓 Minicurso de raspagem de dados web com Python ministrado na Semana de Tecnologia da FATEC Jundiaí
Stars: ✭ 22 (-97.14%)
Mutual labels:  web-scraping
Faster Than Requests
Faster requests on Python 3
Stars: ✭ 639 (-16.91%)
Mutual labels:  web-scraping
Ache
ACHE is a web crawler for domain-specific search.
Stars: ✭ 320 (-58.39%)
Mutual labels:  web-scraping
User Agents
A JavaScript library for generating random user agents with data that's updated daily.
Stars: ✭ 485 (-36.93%)
Mutual labels:  web-scraping
Php Curl Class
PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs
Stars: ✭ 2,903 (+277.5%)
Mutual labels:  web-scraping
Gopa
[WIP] GOPA, a spider written in Golang, for Elasticsearch. DEMO: http://index.elasticsearch.cn
Stars: ✭ 277 (-63.98%)
Mutual labels:  web-scraping
Scrapple
A framework for creating semi-automatic web content extractors
Stars: ✭ 464 (-39.66%)
Mutual labels:  web-scraping
comic-scraper
[Python] Scraps comics and manga from various websites and creates cbz files from them
Stars: ✭ 16 (-97.92%)
Mutual labels:  web-scraping
Pythoncode Tutorials
The Python Code Tutorials
Stars: ✭ 544 (-29.26%)
Mutual labels:  web-scraping
Text-Analysis
Explaining textual analysis tools in Python. Including Preprocessing, Skip Gram (word2vec), and Topic Modelling.
Stars: ✭ 48 (-93.76%)
Mutual labels:  web-scraping
Selectolax
Python binding to Modest engine (fast HTML5 parser with CSS selectors).
Stars: ✭ 368 (-52.15%)
Mutual labels:  web-scraping
Spidr
A versatile Ruby web spidering library that can spider a site, multiple domains, certain links or infinitely. Spidr is designed to be fast and easy to use.
Stars: ✭ 656 (-14.69%)
Mutual labels:  web-scraping
Coolqlcool
Nextjs server to query websites with GraphQL
Stars: ✭ 623 (-18.99%)
Mutual labels:  web-scraping
Rpa
UI.Vision: Open-Source RPA Software (formerly Kantu) - Modern Robotic Process Automation with Selenium IDE++
Stars: ✭ 477 (-37.97%)
Mutual labels:  web-scraping

LucidProgramming YouTube Tutorial Scripts:

LucidProgramming is my YouTube channel and this repo consists of a collection of scripts corresponding to YouTube tutorials for my YouTube channel.

Sponsoring

If you found this code useful in your programming journey, please consider sponsoring the creation of my content by clicking on the "Sponsor" button in this repo.

The funding goes to the creation of new videos, code, and time spent responding to questions, comments, etc.

Your support allows me to spend more time on creating more content to help learners!

Contributing

I would love to compile solutions to all of the problems here, as well as offer solutions in different languages. Just create a pull request with your changes.

Index

Algorithms

Greedy Algorithms

Recursion

Search Algorithms

  • Binary Search
    Iterative and recursive implementation and comparison of binary search.

  • Python's Bisect Method
    We cover the "bisect" function in Python, and how this can be used to apply to problems requiring binary search.

  • Cyclic Sorted Array
    We use binary search to determine the first element of a sorted cyclically rotated list.

  • Find Bitonic Peak
    Determine what the "bitonic peak" of a sequence of numbers is using binary search.

  • Find Bitonic Peak
    Determine what the "bitonic peak" of a sequence of numbers is using binary search.

  • Find Closest Number
    Given an array of sorted integers. We need to find the closest value to the given number.

  • Find First Duplicate Entry
    Write a function that takes an array of sorted integers and a key and returns the index of the first occurrence of that key from the array.

  • Find Fixed Point
    Given an array of n distinct integers sorted in ascending order, write a function that returns a "fixed point" in the array. If there is not a fixed point return "None".

  • Integer Square Root
    Write a function that takes a non-negative integer and returns the largest integer whose square is less than or equal to the integer given.

Sorting Algorithms

String Processing

  • Convert Integer to String
    You are given some integer as input. Convert the integer you are given to a string. Do not make use of the built-in "str" function.

  • Convert String to Integer
    You are given some numeric string as input. Conver the string you are given to an integer. Do not make use of the built-in "int" function.

  • Is Anagram
    Given a string, determine if it is an anagram, i.e. a word or phrase formed by rearranging the letters of a different word or phrase.

  • Is Palindrome
    Given a string, determine if it is a palindrome, i.e. a word or phrase that can be read the same forwards and backwards.

  • Is Permutation
    Given two strings, determine if one string is a permutation of the other.

  • Is Palindrome Permutation
    Given a string, determine if it is a permutation of a palindrome.

  • Is Unique
    Implement an algorithm to determine if a string has all unique characters.

  • Look-and-Say Sequence
    Generate the so-called "Look-and-Say" sequence

  • Spreadsheet Decode
    Given a list of first/last name pairs, eliminate any entries with duplicate first names.

  • Spreadsheet Encode
    Given a column string as formatted in a spreadsheet program, write a function that returns a number corresponding to that particular column.

Bit Manipulation

  • Find Set Bit
    Given a number having only one "1" and all other "0"s in its binary representation, find position of set bit.

  • Is Even or Odd
    Write a program to determine if a given number is even or odd. Do not make use of the modulus operator.

  • Is Nth Bit Set
    Write a program that takes an integer and tests whether the n-th bit in the binary representation of that integer is set of not.

  • Is Power Two
    Given a positive integer, check if the integer is a power of 2.

  • Set Nth Bit
    Write a program that takes an integer and sets the n-th bit in the binary representation of that integer.

  • Toggle Nth Bit
    Write a program that takes an integer and toggles the n-th bit in the binary representation of that integer.

  • Unset Nth Bit
    Write a program that takes an integer and unsets the n-th bit in the binary representation of that integer.

  • Unset Right-Most Bit
    Write a program that takes an integer and unsets the right most bit in the binary representation of that integer

Data Science

Data Structures

Arrays

  • Arbitrary Precision Arithmetic
    Given two arrays that each represent an integer, compute the sum between these numbers.

  • Array Advance
    Given an array with integers that correspond to moves that can be made from left to right, determine if it is possible to advance to the end of the array.

  • Buy and Sell Stock Once
    Given a list of end-day stock prices, determine what the maximum profit one can make by buying and selling a single stock.

  • Two Sum
    Given an array of integers, return the two numbers such that they add up to a specific target.

Bloom Filter

Linked List

Singly Linked List
  • Count Occurrences
    Given a data element, determine how many nodes in a singly linked list contain this piece of data.

  • Deletion
    Given a data element, delete all nodes in a singly linked list that have this given data element.

  • Insertion
    Insert an element into a singly linked list.

  • Is Palindrome
    Given a singly linked list, determine if the data elements form a palindrome.

  • Length
    Given a singly linked list, calculate the length, i.e. the number of nodes in the linked list.

  • Merge Sorted
    Given two sorted singly linked lists, produce a merged singly linked list that is also sorted.

  • Nth-to-Last
    Given a singly linked list and an integer N, determine the Nth-to-last node in the list.

  • Remove Duplicates
    Given a singly linked list, remove all nodes with duplicate data elements.

  • Reverse
    Given a singly linked list, reverse the linked list.

  • Rotate
    Given a singly linked list and an integer, rotate the contents of the singly linked list.

  • Sum Two Lists
    Given two singly linked lists representing integers, produce a third singly linked list that represents the sum of these integers.

  • Swap Nodes
    Given a singly linked list and two nodes, swap the first node with the second.

  • Tail to Head
    Given a singly linked list swap the tail of the list with the head.

Circular Linked List
Doubly Linked List
  • Add Before/Add After
    Add a node in a doubly linked list before a given node. Add a node in a doubly linked list after a given node.

  • Append/Prepend
    Append (add to back) a node to a doubly linked list. Prepend (add to front) a node to a doubly linked list.

  • Delete
    Delete a node in a doubly linked list.

  • Insert
    Insert a node in a doubly linked list.

  • Pairs with Sum
    Obtain the pairs of nodes that sum up to a given target element.

  • Remove Duplicates
    Remove duplicates from a doubly linked list.

  • Reverse
    Reverse a doubly linked list.

Stack

  • Stack Implementation
    Impelementation and description of the stack data structure.

  • Balanced Parens
    Using the stack data structure, determine if a string of parentheses are properly balanced or not.

  • Divide by Two
    Perform division by two using the stack data structure.

  • Reverse String
    Reverse a string using the stack data structure.

Go

imgur Python

Multiprocessing and Threading

Natural Language Processing

Podcasts and Interviews

System Design

Technical Interview

  • Check if String has Unique Characters
    Write a script to determine if a given string has all unique characters.

  • Is Anagram
    Write a script to determine if a given string is an anagram.

  • Check if String is Permutation
    Given two strings, check if they are permutations of each other.

  • Check if String is Palindrome
    Given a string, check if it is a palindrome.

  • Two Sum Problem
    Given an array of integers, return indices of the two numbers such that they add up to a specific target. Each input would have exactly one solution, and don't use the same element twice.

  • Single Number Problem
    Given an array of integers, every element appears twice except for one. Find that single one.

  • FizzBuzz
    Solving the infamous "FizzBuzz" problem in Python.

  • Iterative and Recursive Factorial
    Calculate the factorial of a positive integer. Do so using both an iterative and recursive approach.

  • URLify String
    Write a method to replace all spaces in a string with '%20'. You may assume that the string has sufficient space at the end to hold the additional characters and that you are given the "true" length of the string.

  • One Away
    There are three types of edits that can be performed on strings: insert a character, remove a character, or replace a character. Given two strings, write a function to check if they are one edit (or zero edits) away.

  • Matrix Median
    We are given a row-wise sorted matrix of size r-by-c we need to find the median of the matrix given. It is assumed that r-by-c is always odd.

  • String Compression
    String Compression: Implement a method to perform basic string compression using the counts of repeated characters. For example, the string "aabcccccaaa" would become a2b1c5a3. If the "compressed" string would not become smaller than the original string, your method should return the original string. You can assume the string has only uppercase and lowercase letters (a-z).

  • String Rotation
    String Rotation: Given two strings, s1 and s2, write code to check if s2 is a rotation of s1 (e.g. "waterbottle" is a rotation of "erbottlewat").

  • Count Ones in Binary Representation
    Find the number of 1s in the binary representation of a number.

Twitter Python

Utility Scripts

Vim

Web Scraping and Automation

BeautifulSoup

PyAutoGui

Robobrowser

Scrapy

Selenium

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].