ASAkhil Sudhakaraninjustanothergeek.hashnode.dev路Aug 20, 2021 路 4 min readMaximum Product Of A Splitted Binary TreeProblem Statement: Given the root of a binary tree, split the binary tree into two subtrees by removing one edge such that the product of the sums of the subtrees is maximized. Return the maximum product of the sums of the two subtrees. Since the ans...00
ASAkhil Sudhakaraninjustanothergeek.hashnode.dev路Aug 13, 2021 路 3 min readMaking Diagrams Fun And MaintainableIf you鈥檝e studied software engineering concepts or had some experience in designing software architectures and algorithms, you know that using diagrams to put forth ideas is key. Diagrams can put forth flow of information in an easy and understandabl...00
ASAkhil Sudhakaraninjustanothergeek.hashnode.dev路Jul 3, 2021 路 4 min readObsidian as a second brain 馃 ?Why do we need a second brain? 馃 Working in the IT industry, one would realize that the thing of utmost importance is to constantly improve upon skills in order to stay relevant. It is paramount to record everything that we learn by taking down note...00
ASAkhil Sudhakaraninjustanothergeek.hashnode.dev路Jun 27, 2021 路 3 min readScheduling Scripts On Windows 10Steps to create a power shell task: Go to Start and search for Task Scheduler and open it. Click the Action -> Create Task from the menu bar. Give a suitable name and an optional description for this task. The Security Options section can be use...00
ASAkhil Sudhakaraninjustanothergeek.hashnode.dev路Jun 15, 2021 路 4 min readMaximum Units on a TruckProblem Statement: You are assigned to put some amount of boxes onto one truck. You are given a 2D array boxTypes, where boxTypes[i] = [numberOfBoxesi, numberOfUnitsPerBoxi]: numberOfBoxesi is the number of boxes of type i. numberOfUnitsPerBoxi is t...00