From fc2e32edff4ea85c6ba7b0e004ca64a9cd99d6a8 Mon Sep 17 00:00:00 2001 From: gdimit07 Date: Sat, 24 Sep 2022 15:19:06 +0300 Subject: [PATCH] content for Go maps (#1866) --- .../109-golang/content/100-go-basics/114-maps.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/109-golang/content/100-go-basics/114-maps.md b/content/roadmaps/109-golang/content/100-go-basics/114-maps.md index e04b629b3..d5c57d8c4 100644 --- a/content/roadmaps/109-golang/content/100-go-basics/114-maps.md +++ b/content/roadmaps/109-golang/content/100-go-basics/114-maps.md @@ -1 +1,9 @@ -# Maps \ No newline at end of file +# Maps + +Maps are the data structure in Go, where we use whenever we want to have mappings between key:value pairs. They have flexibility in terms of removing or adding elements into them. Maps do not allow duplicate entries while data are kept unordered. + +Free Content + +Go Maps +Maps in Go +Golang Tutorial #15 - Maps (by Tech With Tim on YouTube) \ No newline at end of file