Skip to main content

The Chasm | Think Like A Coder, Ep 6

434,253 Views

TEDEd Animation

Let’s Begin…

This is episode 6 of our animated series “Think Like A Coder.” This 10-episode narrative follows a girl, Ethic, and her robot companion, Hedge, as they attempt to save the world. The two embark on a quest to collect three artifacts and must solve their way through a series of programming puzzles.

Additional Resources for you to Explore

You get to a gorge. There are hundreds of piles of 20 different types of hover-blocks that will form into a bridge as try to walk across. The hover-blocks support each other pairs that build from each end of the bridge simultaneously (except for the middle, which can have one lone block). So in a stack of CBABA, as you step forwards the span will be:
A---A
AB-BA
ABCBA.

But the bridge will collapse when you’re crossing it if it ever gets to the the point where it can’t be perfectly symmetric (palindromic in this case). DCABAB would go:
A----A
AB--BA
ABCDBA (collapse, because the C and D can’t support each other).

How do you configure your bot to examine the piles and find one that will work?

Main concept: Permutations, Big O introduction

---
code.org (https://code.org) has great resources for students and teachers. It also includes an extensive curriculum mapped to K-12 curriculum standards (https://curriculum.code.org/csf-19/standards/).

If you’re looking for programming challenges, check out the Advent of Code, which is run by Eric Wastl, who consulted extensively on Think Like a Coder and inspired quite a few of the puzzles. The Advent of Code is a yearly event that takes place in December and involves 25 coding challenges linked together by an overarching plot. It’s also available throughout the rest of the year, and the challenges it features are a great way to stretch your coding and problem-solving skills once you have basic proficiency with a programming language.

FreeCodeCamp (https://www.freecodecamp.org) has thousands of coding lessons and programming challenges, and you can even get certified for a few different skills.

University of Michigan's Python for Everybody Specialization on Coursera (https://www.coursera.org/specializations/python) is a beginner-level intro to software development using python that focuses on interacting with data.

Microsoft has a 44 video series called Python for Beginners. In their words, “Even though we won’t cover everything there is to know about Python in the course, we want to make sure we give you the foundation on programming in Python, starting from common everyday code and scenarios. At the end of the course, you’ll be able to go and learn on your own, for example with docs, tutorials, or books.”

If you’re trying to decide what programming language to learn, a flowchart like this one may be a helpful starting point.

Books
Girls Who Code: Learn to Code and Change the World by Reshma Saujani, founder of Girls Who Code, is an excellent introduction for programmers just getting started.

For more experienced programmers, Cracking the Coding Interview is a great resource for problem solving with a variety of different techniques, as well as preparing for coding interviews (as the title suggests). Some of the puzzles featured in Think Like a Coder were inspired by this book.

Next Section »

About TED-Ed Animations

TED-Ed Animations feature the words and ideas of educators brought to life by professional animators. Are you an educator or animator interested in creating a TED-Ed Animation? Nominate yourself here »

Meet The Creators

  • Educator Alex Rosenthal
  • Director Tolga Yıldız
  • Narrator Addison Anderson
  • Producer Serin İnan, Bethany Cutmore-Scott
  • Concept and Character Design Ali Anılır, İbrahim Hakkı Uslu
  • Character Modeling Elif Kaya , Hür Serhat Öz
  • Scene Modeling Saman Khorram, Tolga Yıldız
  • CG Supervisor Saman Khorram
  • 2D Animation Sena Celebi
  • 3D Animation Ece Gener Doğan, Çağatay Özkan
  • Lighting and Shading Alperen Özgür
  • Texturing Ali Anılır
  • Compositor Gökhan Gürler
  • Sound Designer Deniz Doğançay
  • Music Tolga Yıldız
  • Director of Production Gerta Xhelo
  • Editorial Producer Alex Rosenthal
  • Fact-Checker Eden Girma
  • Puzzle Consultant Eric Wastl
  • Special Thanks Sara Kladky

More from Math In Real Life