【Edabit 算法 ★☆☆☆☆☆】 Return Something to Me!

news/2024/11/20 1:48:03/

【Edabit 算法 ★☆☆☆☆☆】 Return Something to Me!

strings language_fundamentals

Instructions

Write a function that returns the string "something" joined with a space " " and the given argument a.

Examples

giveMeSomething(“is better than nothing”) // “something is better than nothing”
giveMeSomething(“Bob Jane”) // “something Bob Jane”
giveMeSomething(“something”) // “something something”

Notes
  • Assume an input is given.
Solutions
function giveMeSomething(a) {return 'something'.concat(' ').concat(a);
}
TestCases
let Test = (function(){return {assertEquals:function(actual,expected){if(actual !== expected){let errorMsg = `actual is ${actual},${expected} is expected`;throw new Error(errorMsg);}}}
})();Test.assertEquals(giveMeSomething("a"), "something a")
Test.assertEquals(giveMeSomething("is cooking"), "something is cooking")
Test.assertEquals(giveMeSomething(" is cooking"), "something  is cooking")

http://www.ppmy.cn/news/1168767.html

相关文章

【Python】将Python中的多维列表进行展开

1. 引言 在本教程中,我们将探索在 Python 中展平列表的不同方法。列表展开是指将多维列表转换为一维列表的过程,我们将介绍如何使用 Python 语法和 NumPy 库来分别展平 二维、三维和四维度的列表。 闲话少说,我们直接开始吧! 2…

前端HTML CSS JS风格规范

本文代码规范来自HTML/CSS代码开发规范文档 文件命名规范 使用小写字母、数字和下划线组成文件名。 避免使用特殊字符和空格。 使用语义化的命名,能够清晰地表达出文件的功能或内容。 目录结构规范 使用约定俗成的目录结构,如:src/compon…

C语言字符型

字符型变量作用 作用: 字符型变量用于显示单个字符 如:a、b、c、d、\n等等 字符型变量语法和使用 语法: char 变量名 字符; 如: char a ‘a’; 注意:字符型是用的单引号 ‘ ’ ,并且是单个…

JS随机数功能详解

目录 一、Math.random()函数 二、生成指定范围内的随机整数 三、生成指定范围内的随机浮点数 四、生成指定范围内的随机布尔值 JavaScript中的随机功能可以通过Math对象提供的各种数学函数来实现。其中最常用的是Math.random()函数,它可以返回一个介于0和1之间的…

java的for循环中遇到异常抛出后继续循环执行

java的for循环中遇到异常抛出后继续循环执行 Test public void loopTryCatchTest() throws Exception {Map<String, Object> a new HashMap();a.put("a", "1");a.put("b", null);a.put("c", "3");for (Map.Entry<…

192:最近的系列思考2/犬岛APP 的使用理解

最近的一些契机&#xff0c;导致一些思考&#xff1a; ​ * 与产品经理意志相悖的产品* 与最初的设计定位不匹配的产品社交大牛的APP一上线就引来诸多关注&#xff0c;作为总设计的纯大大非常简明扼要的说明了这个APP的定位&#xff1a;给内涵&#xff08;含&#xff09;有趣的…

写一个简单的解释器(1) 编译过程简介

编译过程 一般来说&#xff0c;将一份源代码编译为可执行文件包含下面的关键步骤&#xff1a; 源文件 ⇒ 构建标记流 ⇒ 构建编译树 ⇒ 生成可执行文件 \texttt{源文件}\Rightarrow \texttt{构建标记流}\Rightarrow \texttt{构建编译树}\Rightarrow\texttt{生成可执行文件} 源…

Leetcode刷题解析——串联所有单词的子串

1. 题目链接&#xff1a;30. 串联所有单词的子串 2. 题目描述&#xff1a; 给定一个字符串 s 和一个字符串数组 words。 words 中所有字符串 长度相同。 s 中的 串联子串 是指一个包含 words 中所有字符串以任意顺序排列连接起来的子串。 例如&#xff0c;如果 words ["…