This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ArrayChallenge = (arr) => { | |
const result = arr.reduce((acc, curr) => { | |
return acc + curr; | |
}, 0); | |
const double = result * 2; | |
const check = arr.some(e => { | |
return double > e * 2; | |
}); | |
return check ? "true" : "false"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Truied to install Ruby 3.1.2 on MacOs and keep getting a build failed like bellow | |
BUILD FAILED (macOS 12.5 using ruby-build ) | |
Last 10 log lines: | |
The Ruby yaml extension was not compiled. | |
ERROR: Ruby install aborted due to missing extensions | |
Configure options used: | |
--prefix=/Users/devopsme/.rbenv/versions/3.1.2 | |
--enable-shared |