Study Notes

Study Notes

  • Source
  • WebDesign
  • Javascript

›Intermediate Algorithm Script

Basic Javascript

  • Basic JavaScript Overview

ES6

  • ES6 Overview

Regular expression

  • Regular Expression Overview
  • Lookahead
  • Capture Group

Debugging

  • Debugging Overview

Object Oriented Programming

  • Object Oriented Programming Overview
  • Mixin
  • Closure
  • IIFE

Functional Programming

  • Functional Programming

Basic Algorithm Script

  • Reverse a String
  • Factorialize a Number
  • Find the Longest Word in a String
  • Return Largest Numbers In Arrays
  • Repeat a String
  • Truncate a String
  • Finders Keepers
  • Boo Who
  • Title Case a Sentence
  • Slice and Splice
  • Falsy Bouncer
  • javascript-algorithms-anddata-structures/basic-algorithm-scripting/where-do-i-belong
  • Mutations
  • Chunky Monkey

Intermediate Algorithm Script

  • Sum All Numbers in a Range
  • Diff Two Arrays
  • Seek and Destroy
  • Wherefor Art Thou
  • Spinal Tap Case
  • Search and Replace
  • DNA Pairing
  • Missing letters
  • Sorted Union
  • Convert HTML Entities
  • Sum All Odd Fibonacci Numbers
  • Smallest Common Multiple
  • Drop it
  • Steamroller
  • Binary Agents
  • Everything Be True
  • Arguments Optional
  • Make a Person
  • Map the Debris

Sum All Numbers in a Range

个人思路:

  1. 对数组中的元素进行从小到大的排序
  2. 利用 for 循环计算总和
function sumAll(arr) {
  const newArr = [...arr]
  newArr.sort((a, b) => a-b)

  let sum = 0;

  for (let i = newArr[0]; i <= newArr[1]; i++) {
    sum += i;
  }

  return sum;
}

sumAll([1, 4]);

freeCodeCamp 初级思路与中级思路中,都是先找出数组中的最小值与最大值,然后利用 for 循环进行求知。

中级思路中我看到一个比较有意思的东西,就是利用等差数列进行求和。

← Chunky MonkeyDiff Two Arrays →
Copyright © 2019 罗惠东