codewars练习记录12 js

[7 kyu] Power of twoForm The Minimum

Given a list of digits, return the smallest number that could be formed from these digits, using the digits only once (ignore duplicates).
Notes:
Only positive integers will be passed to the function (> 0 ), no negatives or zeros.
Input >> Output Examples

minValue ({1, 3, 1}) ==> return (13)

翻译:
给定一个数字列表,返回由这些数字组成的最小数字,只使用一次数字(忽略重复数字)。
笔记:
只有正整数将被传递给函数(>0),没有负数或零。
解:

function minValue(values){
  //your code here
   return +(Array.from(new Set(values))).sort((a,b)=>a-b).join('');
}
[5 kyu] Sum of Pairs

Given a list of integers and a single sum value, return the first two values (parse from the left please) in order of appearance that add up to form the sum.
If there are two or more pairs with the required sum, the pair whose second element has the smallest index is the solution.

sum_pairs([11, 3, 7, 5], 10)--------------------------- 3 + 7 = 10== [3, 7]
sum_pairs([4, 3, 2, 3, 4], 6)-------------------------- 4 + 2 = 6, indices: 0, 2
--------------------------3 + 3 = 6, indices: 1, 3
--------------------------2 + 4 = 6, indices: 2, 4
the correct answer is the pair whose second value has the smallest index
== [4, 2]
sum_pairs([0, 0, -2, 3], 2)
there are no pairs of values that can be added to produce 2.
== None/nil/undefined (Based on the language)
sum_pairs([10, 5, 2, 3, 7, 5], 10)--------------------------5 + 5 = 10, indices: 1, 5
--------------------------3 + 7 = 10, indices: 3, 4 *
the correct answer is the pair whose second value has the smallest index
== [3, 7]

Negative numbers and duplicate numbers can and will appear.
翻译:
给定一个整数列表和一个单一的和值,按照相加形成和的顺序返回前两个值(请从左边解析)。
如果有两个或多个具有所需总和的对,则第二个元素具有最小索引的对就是解。
注:还将测试长度超过10000000个元素的列表。确保代码不会超时。
解一:

var sum_pairs=function(ints, s){
  var seen = {}
  for (var i = 0; i < ints.length; ++i) {
    if (seen[s - ints[i]]) return [s - ints[i], ints[i]];
    seen[ints[i]] = true
  }
}

解二:

function sum_pairs(ints, s) {
  let seen = new Set();
  for (let i of ints) {
    if (seen.has(s - i)) return [s - i, i];
    seen.add(i);
  }
}
[7 kyu] Switcheroo

Given a string made up of letters a, b, and/or c, switch the position of letters a and b (change a to b and vice versa). Leave any incidence of c untouched.
Example:

'acb' --> 'bca'
'aabacbaa' --> 'bbabcabb'

翻译:
描述:
给定一个由字母a、b和/或c组成的字符串,切换字母a和b的位置(将a改为b,反之亦然)。保持c的发生率不变。
解:

function switcheroo(x){
  return x.replace(/a/g,'d').replace(/b/g,'a').replace(/d/g,'b');
}
[6 kyu] Take a Ten Minutes Walk

You live in the city of Cartesia where all roads are laid out in a perfect grid. You arrived ten minutes too early to an appointment, so you decided to take the opportunity to go for a short walk. The city provides its citizens with a Walk Generating App on their phones -- everytime you press the button it sends you an array of one-letter strings representing directions to walk (eg. ['n', 's', 'w', 'e']). You always walk only a single block for each letter (direction) and you know it takes you one minute to traverse one city block, so create a function that will return true if the walk the app gives you will take you exactly ten minutes (you don't want to be early or late!) and will, of course, return you to your starting point. Return false otherwise.

Note: you will always receive a valid array containing a random assortment of direction letters ('n', 's', 'e', or 'w' only). It will never give you an empty array (that's not a walk, that's standing still!).
翻译:
你住在卡泰西亚市,那里所有的道路都以完美的网格布局。你提前十分钟到达约会,所以你决定趁机去散散步。这座城市为市民的手机提供了一个步行生成应用程序——每次你按下按钮,它都会向你发送一个表示步行方向的单字母字符串数组(例如['n','s','w','e')。对于每个字母(方向),你总是只走一个街区,你知道你要花一分钟才能穿过一个城市街区,所以创建一个函数,如果应用程序给你的步行时间正好是十分钟(你不想早或晚!)当然,这会让你回到起点。否则返回false。
注意:您将始终收到一个有效的数组,其中包含随机分类的方向字母(仅'n'、's'、'e'或'w')。它永远不会给你一个空数组(这不是散步,而是站着不动!)。
解一:

function isValidWalk(walk) {
  let x=0
  let y=0
  if(walk.length!=10){
    return false
  }
  for(let i=0;i<walk.length;i++){
    if(walk[i]=='n'){y++ }
    if(walk[i]=='s'){y--}
    if(walk[i]=='e'){x++}
    if(walk[i]=='w'){x--}
  }
  return x==0 && y==0
}

解二:

//用长度来计算
function isValidWalk(walk) {
  const north = walk.filter(item => { return item === "n" }).length;
  const south = walk.filter(item => { return item === "s" }).length;
  const east = walk.filter(item => { return item === "e" }).length;
  const west = walk.filter(item => { return item === "w" }).length;
  
  return walk.length === 10 && north === south && east === west;
}
[7 kyu] Sum of Triangular Numbers

Your task is to return the sum of Triangular Numbers up-to-and-including the nth Triangular Number.

Triangular Number: "any of the series of numbers (1, 3, 6, 10, 15, etc.) obtained by continued summation of the natural numbers 1, 2, 3, 4, 5, etc."

[01]
02 [03]
04 05 [06]
07 08 09 [10]
11 12 13 14 [15]
16 17 18 19 20 [21]
e.g. If 4 is given: 1 + 3 + 6 + 10 = 20.

Triangular Numbers cannot be negative so return 0 if a negative number is given.
翻译:
您的任务是返回三角形数之和,包括第n个三角形数。
三角数:“自然数1、2、3、4、5等的连续求和所得到的任何一系列数(1、3、6、10、15等)。”
三角数不能为负数,因此如果给定负数,则返回0。
解一:

function sumTriangularNumbers(n) {
var sum = 0;  
for(var i = 1; i <= n; i++)
{
sum += (i*(i+1))/2;
}
return sum;
}

解二:

function sumTriangularNumbers(n) {
  return n < 0 ? 0 : n * (n + 1) * (n + 2) / 6;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容