Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 961 Bytes

day1.md

File metadata and controls

32 lines (20 loc) · 961 Bytes

INTRODUCTION TO COMMANDS

  1. turn_3rd_cell_blue - solution
  • start: ['.', '.', '.', '.', '.']
  • finish: ['.', .', 'b', '.', '.']
  1. erase_3rd_cell - solution
  • start: ['b', 'b', 'b', 'b', 'b']
  • finish: ['b', 'b', '.', 'b', 'b']
  1. every_other_erase - solution
  • start: ['b', 'b', 'b', 'b', 'b']
  • finish: ['b', '.', 'b', '.', 'b']
  1. every_other_blue - solution
  • start: ['g', 'g', 'g', '.', '.']
  • finish: ['g', 'b', 'g', 'b', '.']
  1. move_start_to_finish - solution
  • start: ['b', '.', '.', '.', '.']

  • finish: ['.', '.', '.', '.', 'b']

  • start: ['g', '.', '.', '.', '.']

  • finish: ['.', '.', '.', '.', 'g']

  • start: ['.', '.', '.', '.', '.']

  • finish: ['.', '.', '.', '.', '.']