Intuition
Split sentence with ' '
space delimiter, truncate the array and return the string using join
.
Code
Python3
Big O Analysis
-
Runtime
The runtime complexity here is since we are using
split
- which uses N time. -
Memory
The memory usage is since we are using
join
function which returns a string.
— A