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...
blog.wellosoft.net4 min readFor me as a Data Scientist, having access to powerful clusters at all times can make me lazy regarding code efficiency, in terms of line/character length, as well as how quickly the code takes to run.
This article is a great reminder to make code more efficient, nice work!
Wildan M
Look up the sky
Wow. Somebody beats me in my dev.to article π. Check it out!