Given a list of integers, let's decide that two consecutive items in the list are neighbours if their difference is 1. So, items 1 and 2 would be neighbours, and so would items 56 and 55. Please write a function named longest_series_of_neighbours, which looks for the longest series of neighbours within the list, and returns its length. For example, in the list [1, 2, 5, 4, 3, 4] the longest list of neighbours would be [5, 4, 3, 4], with a length of 4. An example function call: my_list = [1, 2, 5, 7, 6, 5, 6, 3, 4, 1, 0] print (longest_series_of_neighbours (my_list)) 4 Sample output

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question

Can you use Python programming language to to this question?

Thanks

Given a list of integers, let's decide that two consecutive items in the list are neighbours if
their difference is 1. So, items 1 and 2 would be neighbours, and so would items 56 and
55.
Please write a function named longest_series_of_neighbours, which looks for the
longest series of neighbours within the list, and returns its length.
For example, in the list [1, 2, 5, 4, 3, 4] the longest list of neighbours would be [5,
4, 3, 4], with a length of 4.
An example function call:
my_list = [1, 2, 5, 7, 6, 5, 6, 3, 4, 1, 0]
print (longest_series_of_neighbours (my_list))
4
Sample output
Transcribed Image Text:Given a list of integers, let's decide that two consecutive items in the list are neighbours if their difference is 1. So, items 1 and 2 would be neighbours, and so would items 56 and 55. Please write a function named longest_series_of_neighbours, which looks for the longest series of neighbours within the list, and returns its length. For example, in the list [1, 2, 5, 4, 3, 4] the longest list of neighbours would be [5, 4, 3, 4], with a length of 4. An example function call: my_list = [1, 2, 5, 7, 6, 5, 6, 3, 4, 1, 0] print (longest_series_of_neighbours (my_list)) 4 Sample output
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Lists
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning