chromebooker
@chromebooker
School alt of a repl user
1
Flappy ChallengeA new challenge for Replit users!
Contribute by making Flappy Bird games with the #flappychallenge tag and commenting the links down below.
26
0
1
0
Survey thingyDefine traits from words via custom surveys
Leave a comment for things
15
0
0
0
Pythagorean Triple FinderBrute-force algorithm for finding all possible Pythagorean Triples within a certain range
0
0
0
1
math thingA little algorithm I made on accident, decided to graph it and now it looks cool
10
0
1
1
Very small missing number game@ElijahSeele created a super-compact remake of a game, I made it even more compact.
Read the README.md for more info
10
6
1
ErikoXDev this seems smaller
```python
L=True
K=int
C=input
A=print
from random import randint as I
J=lambda:A('\x1b[H\x1b[2J',end='',flush=L)
while L:
try:
D=K(C('Highest num: '));E=I(1,D);F='Find missing number: ';A(F);B=0
while B<D:
B+=1
if B!=E:A(B)
G=C('Your guess: ')
while K(G)!=E:A('Wrong');G=C(F)
A('You found it!');H=C('Again? ').lower()
if H=='n'or H=='no':break
except:J();A('Error')
```2 months ago
CoderElijah You and @ErikoXDev both succeeded. Good job! Now I have to study these codes to implement these shortcuts in the future.2 months ago
1
Code TesterSimple library/demo for testing code
1
0
1
1
rust typing effecta small rust module/demo that could be useful for a variety of console-based things
2
0
1
1
Oregon JourneyMy ripoff of a ripoff of Oregon Trail made by a friend
(Doesn't really have anything to do with the original game)
22
1
1
1
simple reinforcement learning thingsuper buggy thing where the blue dots try to reach the red dot
41
0
1