LeetCode Records - Question 2667 Create Hello World Function
function createHelloWorld() {
return () => "Hello World";
}
- Runtime: 42 ms (Beats: 92.39%)
- Memory: 48.62 MB (Beats: 51.91%)
function createHelloWorld() {
return () => "Hello World";
}