SlideShare a Scribd company logo
1 of 2
Given a list of numbers, count and return how many pairs there are. A pair exists when the same
number appears in adjacent locations in the list. Do not alter the list in any way. Do not use any
Python library functions with the list except len(). count_pairs([1, 30, 30, 0, 31, 31]) rightarrow 2
count_pairs([1, 2, 3, 1]) rightarrow 0 count_pairs([1, 1, 1, 7, 5]) rightarrow 2
Solution
def count_pairs(list):
# count holds the count of pairs
count = 0
# iterate over the list till second last element
# idx is index and element is the number onthat index
for idx,element in enumerate(list[:-1]):
# if we get a pair , increment the count
if element == list[idx+1]:
count = count + 1
# print the number of pairs
print count
count_pairs([1,30,30,0,31,31])
count_pairs([1,2,3,1])
count_pairs([1,1,1,7,5])
Given a list of numbers- count and return how many pairs there are- A.docx

More Related Content

Similar to Given a list of numbers- count and return how many pairs there are- A.docx

Similar to Given a list of numbers- count and return how many pairs there are- A.docx (20)

Python-List.pptx
Python-List.pptxPython-List.pptx
Python-List.pptx
 
Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4Anton Kasyanov, Introduction to Python, Lecture4
Anton Kasyanov, Introduction to Python, Lecture4
 
Python data type
Python data typePython data type
Python data type
 
Chap09
Chap09Chap09
Chap09
 
Python Unit 5 Questions n Notes.pdf
Python Unit 5 Questions n Notes.pdfPython Unit 5 Questions n Notes.pdf
Python Unit 5 Questions n Notes.pdf
 
Pytho_tuples
Pytho_tuplesPytho_tuples
Pytho_tuples
 
9781439035665 ppt ch09
9781439035665 ppt ch099781439035665 ppt ch09
9781439035665 ppt ch09
 
List in Python
List in PythonList in Python
List in Python
 
Merge radix-sort-algorithm
Merge radix-sort-algorithmMerge radix-sort-algorithm
Merge radix-sort-algorithm
 
Merge radix-sort-algorithm
Merge radix-sort-algorithmMerge radix-sort-algorithm
Merge radix-sort-algorithm
 
Python programming : List and tuples
Python programming : List and tuplesPython programming : List and tuples
Python programming : List and tuples
 
Data types in python
Data types in pythonData types in python
Data types in python
 
python_avw - Unit-03.pdf
python_avw - Unit-03.pdfpython_avw - Unit-03.pdf
python_avw - Unit-03.pdf
 
List,tuple,dictionary
List,tuple,dictionaryList,tuple,dictionary
List,tuple,dictionary
 
Python programming for Beginners - II
Python programming for Beginners - IIPython programming for Beginners - II
Python programming for Beginners - II
 
Python Data Types.pdf
Python Data Types.pdfPython Data Types.pdf
Python Data Types.pdf
 
Python Data Types (1).pdf
Python Data Types (1).pdfPython Data Types (1).pdf
Python Data Types (1).pdf
 
Python - Data Collection
Python - Data CollectionPython - Data Collection
Python - Data Collection
 
List and Dictionary in python
List and Dictionary in pythonList and Dictionary in python
List and Dictionary in python
 
Python Lecture 11
Python Lecture 11Python Lecture 11
Python Lecture 11
 

More from rtodd751

Given an unsorted linked list- how to find the minimum element-Solutio.docx
Given an unsorted linked list- how to find the minimum element-Solutio.docxGiven an unsorted linked list- how to find the minimum element-Solutio.docx
Given an unsorted linked list- how to find the minimum element-Solutio.docxrtodd751
 
Given the following Binary Tree- show the box trace of Depth(N)-Soluti.docx
Given the following Binary Tree- show the box trace of Depth(N)-Soluti.docxGiven the following Binary Tree- show the box trace of Depth(N)-Soluti.docx
Given the following Binary Tree- show the box trace of Depth(N)-Soluti.docxrtodd751
 
Given the following class declaration- write the code in Java for the.docx
Given the following class declaration- write the code in Java for the.docxGiven the following class declaration- write the code in Java for the.docx
Given the following class declaration- write the code in Java for the.docxrtodd751
 
Given 5 moles of H2SO4 react with excess NaOH how many moles of water.docx
Given 5 moles of H2SO4 react with excess NaOH how many moles of water.docxGiven 5 moles of H2SO4 react with excess NaOH how many moles of water.docx
Given 5 moles of H2SO4 react with excess NaOH how many moles of water.docxrtodd751
 
Given an unsorted linked list- how to find the minimum element-Solutio (1).docx
Given an unsorted linked list- how to find the minimum element-Solutio (1).docxGiven an unsorted linked list- how to find the minimum element-Solutio (1).docx
Given an unsorted linked list- how to find the minimum element-Solutio (1).docxrtodd751
 
Give five latest and uncommon research topics in intelligent vehicular.docx
Give five latest and uncommon research topics in intelligent vehicular.docxGive five latest and uncommon research topics in intelligent vehicular.docx
Give five latest and uncommon research topics in intelligent vehicular.docxrtodd751
 
Give and explain the periodic trend of atomic radius for the 3rd perio.docx
Give and explain the periodic trend of atomic radius for the 3rd perio.docxGive and explain the periodic trend of atomic radius for the 3rd perio.docx
Give and explain the periodic trend of atomic radius for the 3rd perio.docxrtodd751
 
Give an example of a business objective and the related Key Performanc.docx
Give an example of a business objective and the related Key Performanc.docxGive an example of a business objective and the related Key Performanc.docx
Give an example of a business objective and the related Key Performanc.docxrtodd751
 
General Motors exports cars to Spain- but the strong dollar against th.docx
General Motors exports cars to Spain- but the strong dollar against th.docxGeneral Motors exports cars to Spain- but the strong dollar against th.docx
General Motors exports cars to Spain- but the strong dollar against th.docxrtodd751
 

More from rtodd751 (9)

Given an unsorted linked list- how to find the minimum element-Solutio.docx
Given an unsorted linked list- how to find the minimum element-Solutio.docxGiven an unsorted linked list- how to find the minimum element-Solutio.docx
Given an unsorted linked list- how to find the minimum element-Solutio.docx
 
Given the following Binary Tree- show the box trace of Depth(N)-Soluti.docx
Given the following Binary Tree- show the box trace of Depth(N)-Soluti.docxGiven the following Binary Tree- show the box trace of Depth(N)-Soluti.docx
Given the following Binary Tree- show the box trace of Depth(N)-Soluti.docx
 
Given the following class declaration- write the code in Java for the.docx
Given the following class declaration- write the code in Java for the.docxGiven the following class declaration- write the code in Java for the.docx
Given the following class declaration- write the code in Java for the.docx
 
Given 5 moles of H2SO4 react with excess NaOH how many moles of water.docx
Given 5 moles of H2SO4 react with excess NaOH how many moles of water.docxGiven 5 moles of H2SO4 react with excess NaOH how many moles of water.docx
Given 5 moles of H2SO4 react with excess NaOH how many moles of water.docx
 
Given an unsorted linked list- how to find the minimum element-Solutio (1).docx
Given an unsorted linked list- how to find the minimum element-Solutio (1).docxGiven an unsorted linked list- how to find the minimum element-Solutio (1).docx
Given an unsorted linked list- how to find the minimum element-Solutio (1).docx
 
Give five latest and uncommon research topics in intelligent vehicular.docx
Give five latest and uncommon research topics in intelligent vehicular.docxGive five latest and uncommon research topics in intelligent vehicular.docx
Give five latest and uncommon research topics in intelligent vehicular.docx
 
Give and explain the periodic trend of atomic radius for the 3rd perio.docx
Give and explain the periodic trend of atomic radius for the 3rd perio.docxGive and explain the periodic trend of atomic radius for the 3rd perio.docx
Give and explain the periodic trend of atomic radius for the 3rd perio.docx
 
Give an example of a business objective and the related Key Performanc.docx
Give an example of a business objective and the related Key Performanc.docxGive an example of a business objective and the related Key Performanc.docx
Give an example of a business objective and the related Key Performanc.docx
 
General Motors exports cars to Spain- but the strong dollar against th.docx
General Motors exports cars to Spain- but the strong dollar against th.docxGeneral Motors exports cars to Spain- but the strong dollar against th.docx
General Motors exports cars to Spain- but the strong dollar against th.docx
 

Recently uploaded

Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 

Recently uploaded (20)

Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 

Given a list of numbers- count and return how many pairs there are- A.docx

  • 1. Given a list of numbers, count and return how many pairs there are. A pair exists when the same number appears in adjacent locations in the list. Do not alter the list in any way. Do not use any Python library functions with the list except len(). count_pairs([1, 30, 30, 0, 31, 31]) rightarrow 2 count_pairs([1, 2, 3, 1]) rightarrow 0 count_pairs([1, 1, 1, 7, 5]) rightarrow 2 Solution def count_pairs(list): # count holds the count of pairs count = 0 # iterate over the list till second last element # idx is index and element is the number onthat index for idx,element in enumerate(list[:-1]): # if we get a pair , increment the count if element == list[idx+1]: count = count + 1 # print the number of pairs print count count_pairs([1,30,30,0,31,31]) count_pairs([1,2,3,1]) count_pairs([1,1,1,7,5])