Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

question: hash-table-open-addressing-base no.125 line #79

Open
AaronConlon opened this issue Mar 31, 2021 · 0 comments
Open

question: hash-table-open-addressing-base no.125 line #79

AaronConlon opened this issue Mar 31, 2021 · 0 comments

Comments

@AaronConlon
Copy link

values(): Array<V> {
    const values: Array<V> = []

    for (let i = 0; i < this.keyList.length; i++) {
      if (this.keyList[i] && this.keyList[i] !== this.TOMBSTONE) values.push(values[i]) // values.push(this.valueList[i]) ? 
    }

    return values
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant