aureooms/js-sll

View on GitHub
src/utils/len.js

Summary

Maintainability
A
0 mins
Test Coverage

export function len ( head ) {

    let length = 0 ;

    while ( head !== null ) {

        ++length ;
        head = head.next ;

    }

    return length ;

}