We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Breaking the Records
Breaking the Records
Sort by
recency
|
2232 Discussions
|
Please Login in order to post a comment
Python
def breakingRecords(scores): # Write your code here mi = ma = scores[0] mas=mis=0 for i in scores: if i > ma: ma = i mas+=1 if i < mi: mi = i mis+=1 return [mas,mis]
solucion:
const scoreHigh =[];
const scorelow = [];
let comparador = scores[0]; let comparadorlow = scores[0];
for (let index = 1; index < scores.length; index++) { const element = scores[index];
};
return [scoreHigh.length, scorelow.length]
Breaking the Records is all about going beyond limits and setting new standards with bold style. When you throw on the skull belt, you're not just making a statement — you're claiming your space with serious attitude. This isn’t just about fashion, it’s about that raw edge that turns heads without trying too hard. Whether you're pairing it with jeans or layering it up for a night out, the skull belt adds that fearless touch. It’s got that gritty, no-rules vibe that fits right in with anyone breaking away from the usual. Style doesn’t have to shout to be loud — and that’s what this belt nails perfectly. Breaking the Records starts with what you wear, and this piece seals the deal.
I am trying to solve it using c
` my output contains min_count max_count 0 another garbege value it should contain only the first two value instead it have 4 values HELP