LeetCode - 2667. Create Hello World Function

henu·2023년 8월 17일
0

LeetCode

목록 보기
7/186
post-thumbnail

Problem

항상 Hello World를 리턴하는 함수를 리턴하는 함수를 작성하라.

Example 1

Input: args = []
Output: "Hello World"
Explanation:
const f = createHelloWorld();
f(); // "Hello World"

The function returned by createHelloWorld should always return "Hello World".

Example 2

Input: args = [{},null,42]
Output: "Hello World"
Explanation:
const f = createHelloWorld();
f({}, null, 42); // "Hello World"

Any arguments could be passed to the function but it should still always return "Hello World".

Solution

var createHelloWorld = function() {
    return function() {
        return "Hello World"
    }
};

Explanation

createHelloWorld 함수는 함수를 리턴하는 함수이다.
그리고 그 함수는 항상 Hello World를 리턴하는 함수이다.

0개의 댓글