Become a member
Sign in
Chung Yau Choi
Chung Yau Choi

Chung Yau Choi

72 Following
66 Followers
  • Profile
  • Claps

Latest

Chung Yau Choi
Chung Yau Choi
Aug 25, 2018 · 1 min read

Algorithm Challenge — Day 3 (Reverse String using reduce)

// — — Directions
// Given a string, return a new string with the reversed
// order of characters
// — — Examples
// reverse(‘apple’) === ‘leppa’

Chung Yau Choi
Chung Yau Choi
Aug 23, 2018 · 1 min read

Algorithm Challenge — Day 2 (Reverse String without using built-in reverse)

// — — Directions
// Given a string, return a new string with the reversed
// order of characters
// — — Example
// reverse(‘apple’) === ‘leppa’

1

Chung Yau Choi
Chung Yau Choi
Aug 23, 2018 · 1 min read

Algorithm Challenge — Day 1 (Reverse String using built-in reverse)

// — — Directions
// Given a string, return a new string with the reversed
// order of characters
// — — Example
// reverse(‘apple’) === ‘leppa’