Skip to content

Latest commit

 

History

History
29 lines (14 loc) · 557 Bytes

README_401_31.md

File metadata and controls

29 lines (14 loc) · 557 Bytes

Hashtables

Challenge

Implement a Hashtable Class with the following methods:

  • Write a function called repeated word that finds the first word to occur more than once in a string

    • Arguments: string
    • Return: string

Whiteboard Process

Hashtables

Approach & Efficiency

Big O Time <--- O(n) Space <----- O(n)

API