0195. Tenth Line
https://leetcode.com/problems/tenth-line
Description
Given a text file file.txt
, print just the 10th line of the file.
Example:
Assume that file.txt
has the following content:
Your script should output the tenth line, which is:
Note:
If the file contains less than 10 lines, what should you output?
There's at least three different solutions. Try to explore all possibilities.
ac
Last updated