Open in app
Home
Notifications
Lists
Stories

Write
Naveen Vandanapu
Naveen Vandanapu

Home

Published in Dev Genius

·Apr 21

Leetcode 212: Word Search II | Golang

Given an m x n board of characters and a list of strings words, return all words on that board. Each word must be constructed from letter of sequentially adjacent cells, where adjacent cells are horizontally or vertically neighboring. The same letter cell may not be used more than once…

Word Search

6 min read

Leetcode 212: Word Search II | Golang
Leetcode 212: Word Search II | Golang

Jun 18, 2021

Listeners and Towers Problem Solution in Go

Problem Statement You are the technical director of WSPT radio, serving listeners nationwide. For simplicity’s sake we can consider each listener to live along a horizontal line stretching from 0 (west) to 1000 (east). Given a list of N listeners, and a list of M radio towers, each placed at…

Go

5 min read


Jun 15, 2021

Zigzag Level Order Traversal of a Binary Tree in Go

This is part 4of the series — working with Binary Trees in Go. In this article, I will show how to perform zigzag level order traversal of a binary tree in Go. Part 1 Binary Tree Traversals in Go (access it here) Part 2 Binary Tree Traversals in Go —…

Go

2 min read

Zigzag Level Order Traversal of a Binary Tree in Go
Zigzag Level Order Traversal of a Binary Tree in Go

Published in Geek Culture

·Jun 14, 2021

Level Order Traversal of Binary Trees in Go

This is part 3 of the series — working with Binary Trees in Go. In this article, I will show how to perform level order traversal of a binary tree in Go. Part 1 Binary Tree Traversals in Go (access it here) Part 2 Binary Tree Traversals in Go —…

Go

3 min read

Level order Traversal of Binary Trees in Go
Level order Traversal of Binary Trees in Go

Published in Geek Culture

·Jun 13, 2021

Binary Tree Traversals in Go — Part 2

This is part 2 of the series — working with Binary Trees in Go. I would like to show iterative implementation of the three traversal algorithms discussed in part 1 of the series. Part 1 Binary Tree Traversals in Go (access it here) Part 2 Binary Tree Traversals in Go…

Go

3 min read

Binary Tree Traversals in Go — Part 2
Binary Tree Traversals in Go — Part 2

Published in Geek Culture

·Jun 13, 2021

Binary Tree Traversals in Go

When I first began my journey with Go I wanted to pick several simple and intuitive problems and code their solutions in Go. …

3 min read


Published in CodeX

·Jun 12, 2021

Leetcode 300: Longest Increasing Subsequence

Given an integer array nums, return the length of the longest strictly increasing subsequence. A subsequence is a sequence that can be derived from an array by deleting some or no elements without changing the order of the remaining elements. For example, [3,6,2,7] is a subsequence of the array [0,3,1,6,2,2,7] …

Go

5 min read

Leetcode 300: Longest Increasing Subsequence
Leetcode 300: Longest Increasing Subsequence

Jun 11, 2021

Leetcode 347: Top K Frequent Elements

Given an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order. (This is Leetcode problem # 347) Example: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Explanation: 1 occurs three times and 2 occurs two times in…

Go

3 min read

Naveen Vandanapu

Naveen Vandanapu

Golang

Following
  • Salvatore Raieli

    Salvatore Raieli

  • Devansh- Machine Learning Made Simple

    Devansh- Machine Learning Made Simple

  • Netflix Technology Blog

    Netflix Technology Blog

  • Alex Tan

    Alex Tan

  • Abhinav Singh

    Abhinav Singh

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Knowable