Sha256: 812adab32d56c4224294be14ea449a234d44db72d1a41c281ca51bc808f1415e
Contents?: true
Size: 471 Bytes
Versions: 221
Compression:
Stored size: 471 Bytes
Contents
" " Find the difference between the square of the sum and the sum of the squares " of the first N natural numbers. " " Examples: " " :echo SquareOfSum(3) " 36 " :echo SumOfSquares(3) " 14 " :echo Difference(3) " 22 " function! Difference(number) abort " your implemention goes here endfunction function! SquareOfSum(number) abort " your implemention goes here endfunction function! SumOfSquares(number) abort " your implemention goes here endfunction
Version data entries
221 entries across 221 versions & 1 rubygems