Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

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

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

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

Developer27149 opened this issue Mar 31, 2021 · 0 comments

Comments

@Developer27149
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 subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant