Cracking the Coding Interview

Reading Journey

  • Started: 2022-04-19T21:36:44Z
  • Ended: 2022-04-27T15:59:06Z
  • Total Time Read: 3hrs 23mins 19secs
Code
%run _help_reading.py
import pandas as pd

df = pd.read_csv(
  'https://github.com/MrGeislinger/victorsothervector/raw/main/'
  'data/reading/all_reading-clean.csv'
)

book_name = """Cracking the Coding Interview"""
one_title = one_title_data(df, book_name)
one_title_summary = get_summary_by_day(one_title)
generate_plot(one_title_summary, book_name);
Figure 1: Reading done for Cracking the Coding Interview