UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

12 lines (8 loc) 158 B
function findMin(root) { if (!root) return null; while (root.left) root = root.left; return root; } module.exports = { findMin };