"Look and say" sequence - MATLAB Cody - MATLAB Central

Problem 594. "Look and say" sequence

Difficulty:Rate

What's the next number in this sequence?

  • [0]
  • [1 0]
  • [1 1 1 0]
  • [3 1 1 0]
  • [1 3 2 1 1 0]

This a variant on the well-known "look and say" or Morris sequence, where each new iteration is made up by 'saying' the number of numbers you see. That last line is "one 3; then two 1s; then one 0".

Create a function that returns the next element of this sequence, given a vector as a starting seed..

Solution Stats

44.06% Correct | 55.94% Incorrect
Last Solution submitted on May 05, 2025

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
3

Problem Recent Solvers217

Suggested Problems

More from this Author3

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Go to top of page