This file contains hidden or 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
| sudo /etc/init.d/bluetooth restart | |
| hcitool dev | |
| bluetoothctl | |
| sudo service bluetooth restart | |
| lspci -knn | grep Net -A2 | |
| dmesg | grep bluetooth |
This file contains hidden or 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
| var arr = [[1,2,[3]],4]; | |
| function flatten(arr){ | |
| return arr.reduce(function(pre,curr){ | |
| return pre.concat(curr.constructor === Array ? flatten(curr) : curr); | |
| }, []); | |
| } | |
| console.log(flatten(arr)); | |
| function solutionAvgColor (hex1, hex2) { |
NewerOlder