package
0.0.0-20240710215349-97bfe1c12a25
Repository: https://github.com/allensg/codingproblems.git
Documentation: pkg.go.dev

# README

Setting up a new directory structure to work with the leetcode vs code plugin. No test files as they're housed on the leetcode side. Anything that has been completed will have the an Answer comment block above the public caller method.

// Problems started but not solved will have a //TODO in them you can search at the dir level.

# Functions

No description provided by the author
takes in a string and stores it in columns like so Input: s = "PAYPALISHIRING", numRows = 4 Explanation: P I N A L S I G Y A H R P I where index column (k) 0 is fully populated then each column after that is staggered such that column is placed at row - 1 until k%len(str) is satisfied.
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
different graph representation types.
No description provided by the author
Definition for singly-linked list.
@lc code=start.
Definition for a Node, specifically LC138, random pointer.
Definition for a binary tree node.

# Type aliases

No description provided by the author
No description provided by the author
No description provided by the author