Skip to content

Instantly share code, notes, and snippets.

View forrestblade's full-sized avatar
:shipit:
coding my face off

Forrest Blade forrestblade

:shipit:
coding my face off
View GitHub Profile
console.log('reload')
const noCarry = (val1, val2) => {
val1 = val1.toString().split('').map(x => parseInt(x))
val2 = val2.toString().split('').map(x => parseInt(x))
const f = (arr1, arr2) => {
const a = arr1.length > arr2.length ? arr1 : arr2;
const b = arr1.length > arr2.length ? arr2 : arr1;
let result = []