code.ashish.me

Atom feed

Recently added: 128 Longest Consecutive Sequence, 347 Top K Frequent Elements, 045 Jump Game 2, 228 Summary Ranges, 219 Contains Duplicate 2

04 Largest Number

/**
 * Created by Ashish Patel
 * Copyright © 2017 ashish.me
 * ashishsushilpatel@gmail.com 
 */

/**
 * Program:
 * Return the length of the longest word in the provided sentence.
 * Your response should be a number.
 */

 function getLongestWordLength(str){
    return str.split(' ').reduce((longest, index) =>
         longest.length > index.length ? longest : index
    , 0).length;
 }

 console.log(getLongestWordLength("Lorem ipsum dolor sit amet, consectetur adipiscing elit"));

Created 2019-11-24T04:53:20+05:30 · Edit