Skip to content

Commit

Permalink
Merge pull request #48 from bovem/drafts
Browse files Browse the repository at this point in the history
Article #24:  Group Anagrams in an Array
  • Loading branch information
bovem authored Oct 22, 2023
2 parents eb58380 + 821755d commit 6662f14
Show file tree
Hide file tree
Showing 14 changed files with 386 additions and 9 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ Blogs on Self-Hosting, Homelab and DevOps Technologies.
- <a target=_blank href="https://www.bovem.in/posts/dsa/rabin-karp-substring-search/">Rabin-Karp Substring Search</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/contains-duplicate/">Checking an Array for Duplicate Values</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/identifying-anagrams/">Identifying Anagrams</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/finding-elements-that-sum-up-to-target/">Finding Elements in an Array that Sum Up to a Target Value</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/finding-elements-that-sum-up-to-target/">Finding Elements in an Array that Sum Up to a Target Value</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/group-anagrams-in-an-array/">Group Anagrams in an Array</a>

## Technologies Used
- [Hugo Static Site Generator](https://gohugo.io/)
Expand Down
6 changes: 3 additions & 3 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ languages:
- name: Archive
url: archives
weight: 5
# - name: Index
# url: https://github.com/bovem/bovem.github.io#index
# weight: 10
- name: Index
url: contents
weight: 10
- name: Tags
url: tags/
weight: 15
Expand Down
36 changes: 36 additions & 0 deletions content/contents.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: "Index"
layout: "contents"
url: "/contents"
summary: "Index of all content"
---

- <a target=_blank href="https://www.bovem.in/posts/kubernetes/">Kubernetes</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/containers/">Containers</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/container-architecture/">Container Architecture</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/container-lifecycle/">Container Lifecycle</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/container-images/">Container Images</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/building-container-images/">Building Container Images</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/kubernetes-operators/">Kubernetes Operators</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/operators-on-openshift/">Operators on OpenShift</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/operator-sdk/">Operator SDK and Bundle Images</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/helm-charts/">Helm Charts</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/container-network-interfaces/">Container Network Interfaces (CNI)</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/container-storage-interfaces/">Container Storage Interfaces (CSI)</a>
- <a target=_blank href="https://www.bovem.in/posts/kubernetes/network-functions/">Network Functions</a>
- <a target=_blank href="https://www.bovem.in/posts/homelab/">Homelab</a>
- <a target=_blank href="https://www.bovem.in/posts/homelab/building-your-own-homelab/">Building Your Own Homelab</a>
- <a target=_blank href="https://www.bovem.in/posts/go/">Go</a>
- <a target=_blank href="https://www.bovem.in/posts/go/go-programming-language/">Go Programming Language</a>
- <a target=_blank href="https://www.bovem.in/posts/go/file-handling-in-go/">File Handling in Go</a>
- <a target=_blank href="https://www.bovem.in/posts/go/concurrency-in-go/">Concurrency in Go</a>
- <a target=_blank href="https://www.bovem.in/posts/go/rest-api-requests-in-go/">REST API Requests in Go</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/">Data Structures and Algorithms</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/time-complexity/">Time Complexity</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/arrays-strings-hashmaps/">Arrays, Strings, and HashMaps</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/rabin-karp-substring-search/">Rabin-Karp Substring Search</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/contains-duplicate/">Checking an Array for Duplicate Values</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/identifying-anagrams/">Identifying Anagrams</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/finding-elements-that-sum-up-to-target/">Finding Elements in an Array that Sum Up to a Target Value</a>
- <a target=_blank href="https://www.bovem.in/posts/dsa/group-anagrams-in-an-array/">Group Anagrams in an Array</a>

2 changes: 1 addition & 1 deletion content/posts/dsa/contains-duplicate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ author: "Avnish"
title: "Checking an Array for Duplicate Values"
date: "2023-10-10"
description: "Implementing a containsDuplicate function that returns true if there are duplicate elements present in the array and false otherwise"
tags: ["data-structures", "arrays", "hashmaps", "go", "neetcode-150"]
tags: ["data-structures", "arrays", "hashmaps", "go", "neetcode-150", "leetcode-easy"]
categories: ["Data Structures"]
series: ["Data Structures and Algorithms"]
aliases: ["contains-duplicate"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ author: "Avnish"
title: "Finding Elements in an Array that Sum Up to a Target Value"
date: "2023-10-15"
description: "Implementing a twoSums(inputArray, targetValue) function that returns the indices of two elements in inputArray which could be summed up to the targetValue"
tags: ["data-structures", "arrays", "hashmaps", "go", "neetcode-150"]
tags: ["data-structures", "arrays", "hashmaps", "go", "neetcode-150", "leetcode-easy"]
categories: ["Data Structures"]
series: ["Data Structures and Algorithms"]
aliases: ["finding-elements-that-sum-up-to-target", "two-sums"]
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 6662f14

Please sign in to comment.