#๐Ÿ”’ Challengen 1:

6 messages ยท Page 1 of 1 (latest)

split epoch
#

i have a challenge, you want try?
Rule: create a sorting program that is the fastest and has the fewest iterations, that person will have the highest rank and absolutely DO NOT USE the sort() and sorted() functions
Y has 512 elemet
Layout:

import matplotlib.pyplot as plt
import random, time

def y():
    temp = []
    for _ in range(512):
        temp += [random.randint(1, 512)]
    return temp

X = range(1, 513)
Y = y()

ax = plt.subplot()
ax.bar(X, Y)

loop = 0

t1 = time.time()
while Y != range(1, 513):
    plt.pause(0.5)
    plt.draw()
    """Your code"""

    loop += 1
t2 = time.time()
timer = t2 - t1 

print("Time: ",timer," Loop: ",loop)

plt.show()

pale wedgeBOT
#

@split epoch

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

steel hollow
#

where exactly is the "help" part of your post

#

it just seems like you are trying to trick people into doing your homework

pale wedgeBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.