Skip to content

Latest commit

Β 

History

History
33 lines (23 loc) Β· 1.32 KB

File metadata and controls

33 lines (23 loc) Β· 1.32 KB

🎯 CodinGame Problems

I like to solve CodinGame puzzles locally on my computer for comfort, then copy my solutions into the CodinGame editor.

Here is my CodinGame profile β†’ ClemBytes

πŸ“œ Problems Solved

🚌 TAN Network β€” Hard

  • Goal: Given a description of a public transportation network, find the shortest path between a starting and ending point.
  • Topics: Pathfinding, graphs, distances.
  • Tech: πŸ¦€ Rust.

🎨 Graffiti on the Fence β€” Easy

  • Goal: Given painted intervals of a fence (possibly overlapping or non-continuous), find the unpainted intervals.
  • Topics: Intervals.
  • Tech: πŸ¦€ Rust.

➑️ Create 'Turn Here' Signs β€” Easy

  • Goal: Create ASCII art of a turn sign, given some directions.
  • Topics: Loops, logic, string manipulation, ASCII art.
  • Tech: 🐍 Python.

πŸŒ‰ Logic gates β€” Easy

  • Goal: Given input signals and some logic gates, produce output signal.
  • Topics: Logic.
  • Tech: 🐍 Python.