Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hey I needed some help on the simplify function I was wondering if I could get some guidance on how to solve it. 4. format_number

image text in transcribedHey I needed some help on the simplify function I was wondering if I could get some guidance on how to solve it.

4. format_number (num) It takes a non-negative number as a parameter and returns a string representing the same number with commas inserted properly as thousand separator. You are not allowed to use any formatting library/function provided in python. \[ \begin{array}{l} \text { format_number (1) } \\ \gg \text { format_number (11) } \\ \text { '11, } \\ \text { '12' } \\ \text { '123' } \\ \text { ' } 1 \text {, 234' } \\ \text { '12, } 345^{\text {' }} \\ \text { \ format_number (123456) } \\ \text { ' } 123,456 \text { ' } \\ \gg \text { format_number (1234567) } \\ \text { ' } 1,234,567 \text { ' } \\ \end{array} \] 5. simplify (directions) You are given directions to drive from a source to a destination. The directions are a combination of "East", "West", "South", and "North". Obviously, driving to one direction and driving back in the opposite direction is a waste of time. So you want to eliminate the useless steps so that you have only the necessary directions to the destination. Write a function simplify that takes a list of directions and returns the simplified version of it. ['WEST'] simplify (["NORTH", "SOUTH", "SOUTH", "EAST", "NORTH", "WEST", "NORTH", "WEST"] ['NOATH', "WEST'] > simplify (["NORTH", "EAST", "SOUTH", "WEST"])

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Datalog Engines In Databases

Authors: Bas Ketsman ,Paraschos Koutris

1st Edition

1638280428, 978-1638280422

More Books

Students also viewed these Databases questions