...

/

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.

We'll cover the following...

Solution

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

Python

Python 3.5
age={'sam': 31, 'prateek': 27, 'susan': 25}
age['david']=34
print(age.__contains__('david'))

Explanation

...