Question: Write a C# application with the method isUnique that accepts a Dictionary from strings to strings as a parameter and returns true if no two
Write a C# application with the method isUnique that accepts a Dictionary from strings to strings as a parameter and returns true if no two keys map to the same value and false if any two or more keys do map to the same value The empty map is considered to be unique, so your method should return true if passed an empty map. For example, if the map contains the following keyvalue pairs, your method would true: MartyStepp, StuartReges, JessicaMiller, RodneySnyder, HalPerkins But calling it on the following map would return false, because of two mappings for Perkins and Reges: KendrickPerkins, StuartReges, JessicaMiller, BruceReges, HalPerkins, KimGraves
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
