Skip to content

Instantly share code, notes, and snippets.

View MaxTCodes's full-sized avatar
💻
Coding

Max T MaxTCodes

💻
Coding
View GitHub Profile
@MaxTCodes
MaxTCodes / Index.js
Created December 4, 2021 22:58
Rabbit Solution
var rabbitPos = Math.floor(Math.random() * 101);
function rabbitMove(rabbitPos) {
let e = Math.floor(Math.random() * 2);
switch (e) {
case 0:
if (rabbitPos >= 100) {
return (rabbitPos -= 1);
} else if (rabbitPos <= 0) {
return (rabbitPos += 1);
} else {
@MaxTCodes
MaxTCodes / ReadMe.md
Last active June 23, 2021 18:37
ReadMe!

Hi there, I'm Max!

[MaxTCodes | Twitter][twitter]

maxtcodes


I'm a Developer, and Son!

  • I'm working on nothing much!
  • 2021 Goals: To fully learn and understand how Assembly works!
  • Fun Fact: I started coding when I was 8.