Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 856 Bytes

day3.md

File metadata and controls

29 lines (18 loc) · 856 Bytes

ADVANCED LOOPS & CONDITIONALS

  1. bleed_right - solution
  • start: ['.', '.', 'b', '.', '.']
  • finish: ['.', '.', 'b', 'b', 'b']
  1. invert_colors - solution
  • start: ['b', 'g', 'g', 'b', 'b']

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

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

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

  1. pull_blues_right - solution
  • start: ['b', '.', 'b', '.', '.']
  • finish: ['.', '.', '.', 'b', 'b']
  1. pull_blues_left - solution
  • start: [ '.', 'b', 'b', '.', 'b' ]
  • finish: [ 'b', 'b', 'b', '.', '.' ]
  1. reverse_row - solution
  • start: ['b', 'g', 'g', '.', 'g']
  • finish: ['g', '.', 'g', 'g', 'b']