Skip to content

Instantly share code, notes, and snippets.

View muthukumarse's full-sized avatar

Muthukumar Selvarasu muthukumarse

View GitHub Profile
@muthukumarse
muthukumarse / LinkedList.js
Created December 11, 2019 02:28 — forked from BretCameron/LinkedList.js
The full LinkedList implementation from this tutorial: https://bit.ly/2mihZac
class LinkedListNode {
constructor(value, next) {
this.value = value;
this.next = next || null;
}
}
class LinkedList {
constructor(value) {
this.size = 0;
@muthukumarse
muthukumarse / DevOps Resources.md
Created April 11, 2020 16:35 — forked from edsoncelio/DevOps Resources.md
DevOps Resources.md

Additional Resources : Intro to DevOps - Udacity

Notable Books

function MaximalSquare(strArr) {
var numRows = strArr.length;
var numCols = strArr[0].length;
var maxDim = Math.min(numRows, numCols);
var dim = maxDim;
while (dim > 0) {
if (hasSquare(strArr, dim)) {
return dim * dim;
}