#informationUnmoderated tagAll postsTrending CommunitiesWorldmappinLeoFinanceHIVE CN 中文社区VibesSplinterlandsLifestyleOlio di BalenaActifitHive GamingPhotography LoversHive LearnersLiketuExplore Communities...#informationTrendingHotNewPayoutsMutedtechnico (66)in Freewriters • 4 days agoThe Sun Doesn't Rise or SetCANVA The sun neither rises nor sets, but due to our Earth revolving around the sun, it appears to us that the sun rises and sets. You must be thinking that if the sun neither rises nor sets, then wheredrago18121996 (72)in #ita • yesterdayBinary searchexport function find(haystack: number[], needle: number, counter: number = 0): number | never { const maxNumber = Math.max(...haystack); let middle =…drago18121996 (72)in #ita • 2 days agoHandshake let arr : string[] =["wink" ,"double blink","close your eyes", "jump"]; export function commands(num: number): string[] { let res: string[] = []; const binArr =…drago18121996 (72)in #ita • 4 days agoLengthexport function encode(text:string) { let res = ""; let num = 1; for(let i=0; idrago18121996 (72)in #ita • 6 days agoBasesexport function convert( digits: number[], inputBase: number, outputBase: number ): number[] { let res: number[] = []; let resNum = 0; let exp = digits.length-1;…