Leetle is what the dev market needs. A daily reminder to keep pushing forward & a daily coding challenge to help along the way.
Report
Loves this!! 😍😍 Have been using for a couple of days, couple of thoughts:
- Verrrry big variation in difficulty e.g. between #12 Count Islands and #13 Running Sum. Would suggest having different difficulty levels
- Would be cool to see other languages too (perhaps mandatory only in harder difficulty)
Report
Would also be cool to be able to copy the entire question, my final attempt code, and the rating below that (for own ref). e.g.:
# Write a function solve that returns the running sum of a list. The running sum is the sum of all elements up to each index.
# Example:
# Input: [1,2,3,4]
# Output: [1,3,6,10]
# Make sure you return your solution, don't print!
def solve(nums):
return [sum(nums[0:i+1]) for i in range(len(nums))]
# Leetle #13 1/6 0:56
# [2 lines]
# 🟩🟩🟩🟩🟩🟩
# https://leetle.app
Leetle
Leetle
Leetle
Leetle