mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-06 07:51:41 +08:00
update
This commit is contained in:
32
leetcode/problem/create-hello-world-function.html
Normal file
32
leetcode/problem/create-hello-world-function.html
Normal file
@@ -0,0 +1,32 @@
|
||||
Write a function <code>createHelloWorld</code>. It should return a new function that always returns <code>"Hello World"</code>.
|
||||
<p> </p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> args = []
|
||||
<strong>Output:</strong> "Hello World"
|
||||
<strong>Explanation:</strong>
|
||||
const f = createHelloWorld();
|
||||
f(); // "Hello World"
|
||||
|
||||
The function returned by createHelloWorld should always return "Hello World".
|
||||
</pre>
|
||||
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> args = [{},null,42]
|
||||
<strong>Output:</strong> "Hello World"
|
||||
<strong>Explanation:</strong>
|
||||
const f = createHelloWorld();
|
||||
f({}, null, 42); // "Hello World"
|
||||
|
||||
Any arguments could be passed to the function but it should still always return "Hello World".
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><code>0 <= args.length <= 10</code></li>
|
||||
</ul>
|
Reference in New Issue
Block a user