RMAG news

#1544. Make The String Great

https://leetcode.com/problems/make-the-string-great/description/?envType=daily-question&envId=2024-04-05 var makeGood = function (s) { const stack = []; for (const char of s) { if ( stack.length && Math.abs(char.charCodeAt() – stack[stack.length – 1].charCodeAt()) === 32 ) { stack.pop(); } else { stack.push(char); } } return stack.join(”); };

Citeste mai mult
SpaceX Will Test Eyes, Motion Sickness For Mars Missions In 2024’s Biggest Private Astronaut Launch

SpaceX Will Test Eyes, Motion Sickness For Mars Missions In 2024’s Biggest Private Astronaut Launch

With rapid Falcon 9 launches and Starship development in Texas taking place in the background, SpaceX shared fresh details for its upcoming record-setting private astronaut mission under the Polaris program yesterday. The Polaris Dawn mission, which is a four-crew complement led by billionaire Jared Issacman, is currently due to fly to space in the summer,…

Citeste mai mult
I’ve made game engine (I think)

I’ve made game engine (I think)

Hi! With Python and ThreeJS (https://threejs.org/) I have made app to make easy 3d visualisation, which you can test in browser. Like this: All you need to draw red qube is to type somethig like this: box = ef.create(‘box’, 10, 10, 10, position={‘x’: 0, ‘y’: 10, ‘z’: 0}, color=’red’) And blueprint on back of qube:…

Citeste mai mult
El engaño del Flaco Menotti

El engaño del Flaco Menotti

Hubo un tiempo en que los aficionados del Barça acudían al Camp Nou con margen suficiente para ver el calentamiento de Maradona mientras los periodistas no se movían de la sala de prensa para escuchar a Menotti. Nadie había explicado mejor el fútbol antes que el Flaco ni jugaba como El Pelusa. El partido y…

Citeste mai mult