Bite 312. Scoring objects
|
|
In this Bite you are going to score objects: Object …
builtins
importlib
keyword
typing
|
|
Bite 113. Filter words with non-ascii characters
|
|
In this Bite you extract words from a text that …
all
ascii
ord
unicode
|
|
Bite 87. Convert Decimal to Roman Numerals
|
|
Complete romanize that takes a decimal number and converts it …
numbers
OrderedDict
|
|
Bite 72. Retrieve the right Ninja Belt based on score
|
|
As you have probably seen on the new dashboard you …
itertools
OrderedDict
|
|
Bite 3. Word Values
|
|
Calculate the dictionary word that would have the most value …
freebie
max
Scrabble
sum
|
|
Bite 18. Find the most common word
|
|
Write a function that returns the most common (non stop)word …
Counter
data analysis
list comprehensions
|
|
Bite 23. Find words that are > 95% similar
|
|
Given a list of tags of our blog find the …
difflib
file processing
findall
itertools
SequenceMatcher
|
|
Bite 43. Force keyword arguments
|
|
Write a function called get_profile that can only allows 2 …
function arguments
kwargs
|
|
Bite 47. Write a new password field validator
|
|
You know these Create a new password forms? They do …
re
string module
|
|
Bite 65. Get all valid dictionary words for a draw of letters
|
|
This Bite focusses on the use of itertools. To that …
itertools
Scrabble
set
|
|
Bite 81. Filter and order tweets by polarity values
|
|
In this Bite we collected some random tweets and populated …
namedtuple
TextBlob
Twitter
|
|
Intro Bite 03. Loop through a dictionary and pluralise a word
|
|
You're given a dictionary of people and the number of …
dict
looping
|
|
Bite 118. List exercise: return first occurrence indices of duplicated words
|
|
In this Bite you are presented with a list of …
counting
list comprehensions
set
|
|
Bite 121. Determine the strength of a password
|
|
In this Bite you evaluate the strength of a password. …
re
string matching
|
|
Bite 122. Check if two words are anagrams
|
|
An anagram is a word or phrase formed by rearranging …
anagram
string matching
|
|
Bite 127. Return the right ordinal suffix for a number
|
|
In this Bite you complete a function that takes an …
dict
modulo
numbers
string manipulation
|
|
Bite 132. Find the word with the most vowels
|
|
Finish the get_word_max_vowels function below that takes a text string …
counting
lambda
list comprehensions
string matching
|
|
Bite 145. Record Breakers
|
|
The data for this challenge comes from a subset of …
csv
data analysis
pandas
|
|
Bite 149. Sorting words with constraint
|
|
Here is a list of words Jacob is trying to …
lambda
sorting
string manipulation
|
|
Bite 272. Find common words
|
|
Given two sentences that each contains words in case insensitive …
algorithms
set operations
string matching
|
|
Bite 304. Most identical letters in a word
|
|
In this Bite, you will write a function called max_letter_word() …
casefold
Counter
max
string matching
|
|