12년 후, 어려운 코딩 문제를 푸는 데 12분밖에 걸리지 않았습니다.
코딩 문제
예를 들어
const list = [1,2,3,4,5,6,7,8,9,10];
function under8(i) { return i < 8 }
function over3(i) { return i > 3 }
function under6(i) { return i < 6 }
function over4(i) { return i > 4 }
let fns = []
// accumulate the list of functions to apply
fns = [under8, over3, under6, over4]
let filteredList;
// build a program that generates a filtered array from list
// Testing the program
console.log(filteredList) // -> 5
단 한 번의 고민 끝에 해결책이 떠올랐습니다!
filteredList = fns.reduce((acc, fn) => {
return acc.filter(fn)
}, list)
작동 방식
이런 순간들이 기분이 좋습니다. 가능하면 축하하세요.
함수형 프로그래밍 감사합니다.
Reference
이 문제에 관하여(12년 후, 어려운 코딩 문제를 푸는 데 12분밖에 걸리지 않았습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rmion/12-years-later-a-tough-coding-problem-only-took-me-12-minutes-to-solve-229f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)