...

/

Solution Review: Add Element to the Hashtable and Verify It

Solution Review: Add Element to the Hashtable and Verify It

This review provides a detailed explanation of the solution to the "Add Element to the Hashtable and Verify It" challenge.

Solution

Let’s understand the solution of the challenge in Powershell and Python.

Python

Press + to interact
age={'sam': 31, 'prateek': 27, 'susan': 25}
age['david']=34
print(age.__contains__('david'))

Explanation

...