String Processing in Python: Is Anagram
In this video, we will be determining whether two strings are anagrams of each other. Wikipedia article on Anagrams: https://en.wikipedia.org/wiki/Anagram Simply, an anagram is when two strings can be written using the same letters. Examples: "rail safety" = "fairy tales" "roast beef" = "eat for BSE" It sometimes changes a proper noun or personal name into a sentence: "William Shakespeare" = "I am a weakish speller" "Madam Curie" = "Radium came" Problem: Two strings. Check if they are anagrams. This video is part of a series on string processing and, specifically, on how these problems tend to show up in the context of a technical interview: http://bit.ly/lp_string This video is also part of an "Algorithm" series. For more algorithm tutorials: http://bit.ly/lp_algos The software written in this video is available at: https://github.com/vprusso/youtube_tu... Do you like the development environment I'm using in this video? It's a customized version of vim that's enhanced for Python development. If you want to see how I set up my vim, I have a series on this here: http://bit.ly/lp_vim If you've found this video helpful and want to stay up-to-date with the latest videos posted on this channel, please subscribe: http://bit.ly/lp_subscribe

String Processing in Python: Is Palindrome Permutation

Binary Search in Python: Find First Entry in List with Duplicates

Why Your Code Isn’t Pythonic (And How to Fix It)

I am done with Golang

Algorithms in Python: Recursion -- Count Consonants in String

String Processing in Python: Spreadsheet Encoding

Python OOP Will Finally Make Sense After This

Data Structures in Python: Singly Linked Lists -- Insertion

Guido van Rossum explains Python programming

ALL 47 STRING METHODS IN PYTHON EXPLAINED

Python if __name__ == '__main__': Visually Explained

Algorithms in Python: Recursion -- Find Uppercase Letter in String

Python Generators - Visually Explained

Every F-String Trick In Python Explained

Greedy Algorithms in Python: Optimal Task Assignment

Python F-strings - Visually Explained

Binary Search in Python: Find Fixed Point

Data Structures in Python: Doubly Linked Lists -- Add Node Before/After

Encryption program in Python 🔐

