Number of Lines To Write String — LeetCode 806 Python Solution

EasyArrayString
Problem
#806
Pattern
Hash Map
Reading time
2 min

The problem

You are given a string s of lowercase English letters and an array widths denoting how many pixels wide each lowercase English letter is. Specifically, widths[0] is the width of 'a', widths[1] is the width of 'b', and so on.

Example

Input
widths = [10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10], s = "abcdefghijklmnopqrstuvwxyz"
Output
[3,60]
Explanation
You can write s as follows:

Python solution

Python
class Solution:
    def numberOfLines(self, widths: List[int], s: str) -> List[int]:
        lines, last = 1, 0
        for w in map(lambda c: widths[ord(c) - ord("a")], s):
            if last + w <= 100:
                last += w
            else:
                lines += 1
                last = w
        return [lines, last]

Complexity

MeasureComplexity
TimeO(n), where n is the length of the string s
SpaceO(1) auxiliary

Pattern: Hash Map

Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 806. Number of Lines To Write String is filed here because the reference solution below belongs to the algorithm family this hub collects, even though its LeetCode tags point elsewhere.

The hash map guide has the Python template for the pattern and the 709 LeetCode problems that use it.

Related problems

Frequently asked questions

How hard is LeetCode 806. Number of Lines To Write String?
LeetCode 806. Number of Lines To Write String is rated Easy on LeetCode.
What is the time complexity of LeetCode 806. Number of Lines To Write String?
The Python solution on this page runs in O(n), where n is the length of the string s.
What is the space complexity of LeetCode 806. Number of Lines To Write String?
The Python solution on this page uses O(1) auxiliary space.
What topics does LeetCode 806. Number of Lines To Write String cover?
LeetCode 806. Number of Lines To Write String is tagged Array and String on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview