Implementing HashTable in Java

I have been asked before about how would I implement Hashtable in Java. Before going into code, here are the steps I have used to implement HashTable. Encapsulate key, value pair and linked list with HashEntry class. Create buckets (Just an array of HashEntry) put(key, value) calculates hash from key and inserts in bucket at position index=hash. Incase we already have an entry for the hash, insert entry at the end of linked list maintained by entry.

Hello World

Hello beautiful world !! Created this domain in Google Domains. Wrote the content on Jekyll. Pushed to github pages. Configured DNS records in Google domains. So that website can have personal url. Now what ? – Anil