PracHub
QuestionsPremiumCoachesLearningGuidesInterview Prep

Quick Overview

This question evaluates proficiency in text parsing, tokenization, and numeric comparison applied to command-line style output, emphasizing robust handling of varied input formats and edge cases.

  • medium
  • Intuit
  • Coding & Algorithms
  • Software Engineer

Find largest filename from ls -l output

Company: Intuit

Role: Software Engineer

Category: Coding & Algorithms

Difficulty: medium

Interview Round: Take-home Project

You are given a multi-line string (via stdin) that represents the output of `ls -l`, with one entry per line. Each file line follows the typical `ls -l` format: `<mode> <links> <owner> <group> <size> <month> <day> <time_or_year> <name...>` Task: print the **file name** (the `<name...>` part) of the entry with the **largest `<size>`**. Requirements: - Correctly parse columns so that you read the numeric `size` field. - File names may contain spaces, so you cannot assume the name is a single token. - Ignore non-entry lines such as `total N` if present. Output only the file name of the largest file (any tie-breaking is acceptable unless otherwise specified).

Quick Answer: This question evaluates proficiency in text parsing, tokenization, and numeric comparison applied to command-line style output, emphasizing robust handling of varied input formats and edge cases.

Parse ls -l style output and return the file name for the entry with largest size. Ignore total lines; names may contain spaces.

Constraints

  • Inputs are Python literals matching the function signature.
  • Return a deterministic exact-match value.

Examples

Input: ('total 8\n-rw-r--r-- 1 me staff 12 Jan 1 12:00 small.txt\n-rw-r--r-- 1 me staff 100 Jan 1 12:01 big file.txt',)

Expected Output: 'big file.txt'

Explanation: File name contains spaces.

Input: ('-rw-r--r-- 1 u g 5 May 1 2025 a\n-rw-r--r-- 1 u g 5 May 1 2025 b',)

Expected Output: 'a'

Explanation: Tie keeps first.

Input: ('total 0',)

Expected Output: ''

Explanation: No file entries.

Hints

  1. Choose a representation that makes the requested operation direct.
  2. Handle empty inputs and boundary cases first.
Last updated: Jun 27, 2026

Loading coding console...

PracHub

Master your tech interviews with 8,000+ real questions from top companies.

Product

  • Questions
  • Learning Tracks
  • Interview Guides
  • Resources
  • Premium
  • For Universities
  • Student Access

Browse

  • By Company
  • By Role
  • By Category
  • Topic Hubs
  • SQL Questions
  • Compare Platforms
  • Discord Community

Support

  • support@prachub.com
  • (916) 541-4762

Legal

  • Privacy Policy
  • Terms of Service
  • About Us

© 2026 PracHub. All rights reserved.

Related Coding Questions

  • Add One to Digit Array - Intuit (easy)
  • Find Business Degrees of Separation - Intuit (hard)
  • Validate bracket sequence - Intuit (easy)
  • Produce valid student lineup from parent array - Intuit (medium)
  • Sum palindrome-change costs over all substrings - Intuit (medium)