iT邦幫忙

2023 iThome 鐵人賽

DAY 1
0
Software Development

LELECOCODE 每一天系列 第 1

Day1: Leetcode 小挑戰,30 Days of JavaScript

  • 分享至 

  • xImage
  •  

就順便一起參加 Leetcode 的 30天 JS挑戰吧!

Day1 : Create Hello World Function

Write a function createHelloWorld. It should return a new function that always returns "Hello World".

var createHelloWorld = function() {
    return function(...args) {
       
    }
};

Example 1:
Input: args = []
Output: "Hello World"

Example 2:
Input: args = [{},null,42]
Output: "Hello World"


第一天也太簡單,0難度,光速完成,明天再會!

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

下一篇
Day2: Leetcode 小挑戰,30 Days of JavaScript
系列文
LELECOCODE 每一天30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言