Skip to content

Instantly share code, notes, and snippets.

View plgrazon's full-sized avatar
👨‍💻
Coding

Paolo plgrazon

👨‍💻
Coding
View GitHub Profile
import { Spanner } from "@google-cloud/spanner";
const spanner = new Spanner({
projectId: "project-test",
});
console.log("Spanner initialized");
@plgrazon
plgrazon / ContainerWithMostWater.js
Created April 6, 2022 14:12
11. Container With Most Water
/**
* @param {number[]} height
* @return {number}
*/
var maxArea = function(height) {
let max = 0;
let left = 0;
let right = height.length - 1;
while (left < right) {
@plgrazon
plgrazon / README.md
Created May 19, 2018 17:45 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet