Skip to content

Commit

Permalink
Merge pull request #57 from bovem/drafts
Browse files Browse the repository at this point in the history
Article #30: Linked Lists
  • Loading branch information
bovem authored Nov 17, 2023
2 parents 2faec01 + d466895 commit a4857df
Show file tree
Hide file tree
Showing 15 changed files with 637 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ For a glimpse into my journey and the projects I've been involved in, feel free
- <a target=_blank href="https://www.avni.sh/posts/dsa/is-valid-sudoku/">Checking Validity of a Sudoku Grid</a>
- <a target=_blank href="https://www.avni.sh/posts/dsa/encoding-and-decoding-strings/">Encoding and Decoding Functions for Strings</a>
- <a target=_blank href="https://www.avni.sh/posts/dsa/longest-consecutive/">Finding the Longest Consecutive Sequence in an Array</a>
- <a target=_blank href="https://www.avni.sh/posts/dsa/linked-lists/">Linked Lists</a>

## Technologies Used
- [Hugo Static Site Generator](https://gohugo.io/)
Expand Down
21 changes: 11 additions & 10 deletions content/contents.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ summary: "Index of all content"
- <a target=_blank href="/posts/dsa/">Data Structures and Algorithms</a>
- <a target=_blank href="/posts/dsa/time-complexity/">Time Complexity</a>
- <a target=_blank href="/posts/dsa/arrays-strings-hashmaps/">Arrays, Strings, and HashMaps</a>
- <a target=_blank href="/posts/dsa/rabin-karp-substring-search/">Rabin-Karp Substring Search</a>
- <a target=_blank href="/posts/dsa/contains-duplicate/">Checking an Array for Duplicate Values</a>
- <a target=_blank href="/posts/dsa/is-anagram/">Identifying Anagrams</a>
- <a target=_blank href="/posts/dsa/two-sums/">Finding Elements in an Array that Sum Up to a Target Value</a>
- <a target=_blank href="/posts/dsa/group-anagrams/">Group Anagrams in an Array</a>
- <a target=_blank href="/posts/dsa/top-k-frequent/">Finding Most Frequent Elements in an Array</a>
- <a target=_blank href="/posts/dsa/product-except-self/">Building a Product Array without the Element Itself</a>
- <a target=_blank href="/posts/dsa/is-valid-sudoku/">Checking Validity of a Sudoku Grid</a>
- <a target=_blank href="/posts/dsa/encoding-and-decoding-strings/">Encoding and Decoding Functions for Strings</a>
- <a target=_blank href="/posts/dsa/longest-consecutive/">Finding the Longest Consecutive Sequence in an Array</a>
* <a target=_blank href="/posts/dsa/rabin-karp-substring-search/">Rabin-Karp Substring Search</a>
* <a target=_blank href="/posts/dsa/contains-duplicate/">Checking an Array for Duplicate Values</a>
* <a target=_blank href="/posts/dsa/is-anagram/">Identifying Anagrams</a>
* <a target=_blank href="/posts/dsa/two-sums/">Finding Elements in an Array that Sum Up to a Target Value</a>
* <a target=_blank href="/posts/dsa/group-anagrams/">Group Anagrams in an Array</a>
* <a target=_blank href="/posts/dsa/top-k-frequent/">Finding Most Frequent Elements in an Array</a>
* <a target=_blank href="/posts/dsa/product-except-self/">Building a Product Array without the Element Itself</a>
* <a target=_blank href="/posts/dsa/is-valid-sudoku/">Checking Validity of a Sudoku Grid</a>
* <a target=_blank href="/posts/dsa/encoding-and-decoding-strings/">Encoding and Decoding Functions for Strings</a>
* <a target=_blank href="/posts/dsa/longest-consecutive/">Finding the Longest Consecutive Sequence in an Array</a>
- <a target=_blank href="/posts/dsa/linked-lists/">Linked Lists</a>
2 changes: 1 addition & 1 deletion content/posts/dsa/is-valid-sudoku/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ author: "Avnish"
title: "Checking the Validity of a Sudoku Grid"
date: "2023-11-02"
description: "Implementing an isValidSudoku function that takes a matrix representing a Sudoku grid as inputs and returns true if it is valid and false otherwise"
tags: ["data-structures", "arrays", "sudoku", "hashmaps", "go", "neetcode-150", "leetcode-medium"]
tags: ["data-structures", "arrays", "sudoku", "hashmaps", "go", "neetcode-150", "leetcode-medium", "nested-arrays"]
categories: ["Data Structures"]
series: ["Data Structures and Algorithms"]
aliases:
Expand Down
Loading

0 comments on commit a4857df

Please sign in to comment.