Sort by

recency

|

2136 Discussions

|

  • + 0 comments

    Every time someone says ‘cut the sticks,’ I think about how simple style choices can actually stand out more than flashy ones. Like when I wore my Yeezy Gap Hat with a plain tee and cargos—it looked clean without trying too hard.

  • + 0 comments

    Funny you mentioned cutting the sticks—I’ve been trying to keep things simple in my wardrobe too. Instead of chasing every new drop, I just stick with pieces I know I’ll actually wear. My [NOFS Hoodie](https://nofsmerch.de/hoodies/ has become one of those go-to items, just super versatile whether I’m out or chilling at home.

  • + 0 comments

    Cut the sticks’ is such an addictive game—once you start, it’s hard to stop! Honestly, I was chilling in my Stussy Sweatshirt the other night while playing, and the cozy vibe made the grind way more fun.

  • + 0 comments

    Cut the sticks often feels like a careful task where every cut has to be precise to avoid waste and keep things balanced. Just like that, organizing a space requires the right tools and structure to make everything fit neatly. In this case, Medium Duty Racking Dubai works as a smart solution to keep items stored in an orderly way without losing efficiency. With Easy Way Racks providing these options, it becomes easier to maintain a clean and practical storage setup. Much like cutting sticks into equal parts, these racks create a sense of balance and make everyday use more manageable. They are strong enough for regular loads while keeping things easy to access. A reliable system like this can save both time and effort in workshops, warehouses, or even compact spaces.

  • + 0 comments

    **Simple and Short Python Solution **

    def cutTheSticks(arr):
        c = []
        while arr:
            c.append(len(arr))
            m = min(arr)
            arr = [i for i in arr if i != m ]
        return c