Rewriting the equals method

# Introduction In this challenge, we will be focusing on overriding the `equals()` method in the Value class. The Value class contains two member variables, `int i` and `String s`, and we need to write the `equals()` method in such a way that it compares the contents of Value objects. Additionally, the `equals()` method should also be able to compare with objects of other classes and null objects. Make sure to pay attention to how to compare member variables and the return value when comparing with other types of objects

|60 : 00

Click the virtual machine below to start practicing