Know that you have basic knowledge of Genetic Algorithms, the next step is to read more about GAs and try them out for yourself. Here are a few resources on GAs you might find useful:
A CodinGame puzzle where you have to land a mars rover and a flat surface. You don't have to use GAs to solve it but you can
The goal is to land, without crashing it, the capsule "Mars Lander" which holds the rover Opportunity.
[float, int, float, int, float, int...] the angle (-90° to 90°) and the rocket thrust (0 to 4) on each turn.
Here is an example of solution for solving this puzzle using a genetic algorithm.
Its fitting score is calculated with the final distance to the landing platform.
Mars Lander
1
2
3
4
5
# Genetic Lander
In-browser example of a genetic algorithm optimizing the path of a moon lander
Hosted on github pages: https://fafl.github.io/genetic-lander