From 680c408c8082a2d2938b09e14cc101311cb73242 Mon Sep 17 00:00:00 2001 From: Waleed Jamil Date: Fri, 16 Feb 2018 23:40:11 +0800 Subject: [PATCH] committing --- Data Structures/HashMap/HashMap.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data Structures/HashMap/HashMap.java b/Data Structures/HashMap/HashMap.java index 1cce6260e52c..8e58fe6ca95e 100644 --- a/Data Structures/HashMap/HashMap.java +++ b/Data Structures/HashMap/HashMap.java @@ -5,7 +5,7 @@ import java.util.LinkedList; public class HashMap { - public class hmnodes{ //HashMap nodes + public class hmapnodes{ //HashMap nodes K key; V value; } @@ -91,7 +91,7 @@ public ArrayList keyset() throws Exception{ return arr; } - public ArrayList valueset() throws Exception{ + public ArrayList value() throws Exception{ ArrayList arr=new ArrayList<>(); for(int i=0;i