FCC编程题之中级算法篇(下)

介绍

本篇是"FCC编程题之中级算法篇"系列的最后一篇

这期完结后,下期开始写高级算法,每篇一题


目录


1. Smallest Common Multiple

Find the smallest common multiple of the provided parameters that can be evenly divided by both, as well as by all sequential numbers in the range between these parameters.
The range will be an array of two numbers that will not necessarily be in numerical order.
e.g. for 1 and 3 - find the smallest common multiple of both 1 and 3 that is evenly divisible by all numbers between 1 and 3.
Here are some helpful links:

  • Smallest Common Multiple

寻找给定两数及其中间的所有数的最小公倍数

思路

  • 最小公倍数一定能整除所有的数,此处假设该数组中的最大的数即为最小公倍数。

  • 用假设的最小公倍数除以给定范围中的所有的数,如果都能整除,说明该假设的数即为最小公倍数。

  • 如果有不能整除的数,则将假设的数加上数组中最大的数,在重复第二步。

function smallestCommons(arr) {
  let [start, end] = arr[0] < arr[1] ? [arr[0], arr[1]] : [arr[1], arr[0]];

  for (var i = start, com = end; i < end; i++) {
    if (com % i !== 0) {
      i = start - 1;
      com += end;
    }
  }

  return com;
}

2. Finders Keepers

Create a function that looks through an array (first argument) and returns the first element in the array that passes a truth test (second argument).
Here are some helpful links:

  • Array.prototype.filter()

方法 1

用帮助栏的filter()方法, filter()方法返回一个数组,判断数组的长度,如果不为零,则返回数组第一个元素,否则返回undefined

function findElement(arr, func) {
  let arr1 = arr.filter((val) => {
    return func(val);
  });

  return arr1.length === 0 ? undefined : arr1[0];
}

方法 2

find()方法,find()方法接收一个测试函数作为参数,并返回满足测试函数的第一个元素,如果没有则返回undefined

function findElement(arr, func) {
    return arr.find(func);
}

3. Drop it

Drop the elements of an array (first argument), starting from the front, until the predicate (second argument) returns true.
The second argument, func, is a function you'll use to test the first elements of the array to decide if you should drop it or not.
Return the rest of the array, otherwise return an empty array.
Here are some helpful links:

  • Arguments object
  • Array.prototype.shift()
  • Array.prototype.slice()

思路

使用while()循环对数组元素进行判断,没有通过测试函数的直接删除即可

function dropElements(arr, func) {
  while (!func(arr[0])) {
    arr.shift(0);
  }

  return arr;
}

4. Steamroller

Flatten a nested array. You must account for varying levels of nesting.
Here are some helpful links:

  • Array.isArray()

遍历嵌套数组思路即可解题

Array.isArray()方法接收一个参数,判断这个参数是否是数组

思路

  • 创建一个递归函数,判断数组元素是否为数组,不是数组就返回其值,是数组则使用递归函数
function steamrollArray(arr) {
  let convert = arr => arr.reduce((arr, val) => {
    return arr.concat(Array.isArray(val) ? convert(val) : val);
  }, []);

  return convert(arr);
}

5. Binary Agents

Return an English translated sentence of the passed binary string.
The binary string will be space separated.
Here are some helpful links:
String.prototype.charCodeAt() String.fromCharCode()

将二进制数翻译为英文

思路

  • parseInt()方法接收两个参数,第一个参数为字符串,第二个为基数

  • 利用fromCharCode()方法返回Unicode值序列创建的字符串。

  • 将字符串拼接在一起

function binaryAgent(str) {
  return str.split(' ').map((val) => {
    return String.fromCharCode(parseInt(val, 2));
  }).join('');
}

6. Everything Be Tru

Check if the predicate (second argument) is truthy on all elements of a collection (first argument).
Remember, you can access object properties through either dot notation or [] notation.

根据测试用例可以看出所测属性的值也需为真才行

思路

  • 利用every()方法对每个元素都调用测试函数判断一次

  • 判断对象是否有指定属性,如有,则其值是否为真

function truthCheck(collection, pre) {
  return collection.every((val) => {
    return val.hasOwnProperty(pre) && !!val[pre];
  });
}

7. Arguments Optional

Create a function that sums two arguments together. If only one argument is provided, then return a function that expects one argument and returns the sum.
For example, addTogether(2, 3) should return 5, and addTogether(2) should return a function.
Calling this returned function with a single argument will then return the sum:
var sumTwoAnd = addTogether(2);
sumTwoAnd(3) returns 5.
If either argument isn't a valid number, return undefined.
Here are some helpful links:

  • Closures
  • Arguments object

考察闭包

思路

利用isFinite()方法判断元素是否为数字

function addTogether() {
  let arr = Array.prototype.slice.call(arguments);

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

推荐阅读更多精彩内容