Title: #396 - Rotate Function - LeetCode JavaScript Solutions
Open Graph Title: #396 - Rotate Function - LeetCode JavaScript Solutions
X Title: #396 - Rotate Function - LeetCode JavaScript Solutions
Description: You are given an integer array nums of length n. Assume arrk to be an array obtained by rotating nums by k positions clock-wise. We define t...
Open Graph Description: You are given an integer array nums of length n. Assume arrk to be an array obtained by rotating nums by k positions clock-wise. We define t...
X Description: You are given an integer array nums of length n. Assume arrk to be an array obtained by rotating nums by k positions clock-wise. We define t...
Keywords:
Opengraph URL: https://leetcodejavascript.com/solutions/rotate-function
Domain: leetcodejavascript.com
{"@context":"https://schema.org","@type":"Code","url":"https://leetcodejavascript.com/solutions/rotate-function","name":"#396 - Rotate Function - LeetCode JavaScript Solutions","description":"You are given an integer array nums of length n. Assume arrk to be an array obtained by rotating nums by k positions clock-wise. We define t...","programmingLanguage":"JavaScript","codeRepository":"https://github.com/JoshCrozier/leetcode-javascript","codeSampleType":"JavaScript","text":"/**\n * @param {number[]} nums\n * @return {number}\n */\nvar maxRotateFunction = function(nums) {\n const sum = nums.reduce((a, b) => a + b, 0);\n let current = nums.reduce((total, n, i) => total + i * n, 0);\n let result = current;\n\n for (let i = 1; i < nums.length; i++) {\n current = current + sum - nums.length * nums[nums.length - i];\n result = Math.max(result, current);\n }\n\n return result;\n};","keywords":"LeetCode 396, #396 - Rotate Function, Medium, JavaScript solution","learningResourceType":"Code","isAccessibleForFree":true,"educationalLevel":"intermediate","interactivityType":"mixed"}
| author | LeetCodeJavascript.com |
| og:type | article |
| og:image | https://leetcodejavascript.com/og-image.jpg |
| og:site_name | LeetCode JavaScript Solutions |
| twitter:card | summary_large_image |
| twitter:url | https://leetcodejavascript.com/solutions/rotate-function |
| twitter:image | https://leetcodejavascript.com/og-image.jpg |
| twitter:creator | @joshcrozier |
| theme-color | #1f2937 |
Links:
| LeetCodeJavascript.com | https://leetcodejavascript.com/ |
| Star on GitHub | https://github.com/JoshCrozier/leetcode-javascript |
| Back to all solutions | https://leetcodejavascript.com |
| View on LeetCode | https://leetcode.com/problems/rotate-function/ |
| View on GitHub | https://github.com/JoshCrozier/leetcode-javascript/blob/master/solutions/0396-rotate-function.js |
| Array | https://leetcodejavascript.com/tags/array |
| Dynamic Programming | https://leetcodejavascript.com/tags/dynamic-programming |
| Math | https://leetcodejavascript.com/tags/math |
| Josh Crozier | https://joshcrozier.com |
Viewport: width=device-width, initial-scale=1.0
Robots: index, follow