One code liner in Python ๐
During college, my lecturer gave me a task to find the shortest code to create this string using python: **** *** ** * ** *** **** So how you would do that? Here's the code in Python we end up: for i in range(4, 1, -1): print('*' * i) for i in ra...
Sep 8, 20214 min read383