-
Notifications
You must be signed in to change notification settings - Fork 17
docs #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
docs #21
Conversation
Challenge_guide/New_Challenge.md
Outdated
|
||
[Provide a clear, concise explanation of what the algorithm or function is supposed to do. Include the mathematical concept, the expected behavior, and what the output should represent.] | ||
|
||
**Input Format:** All inputs must be floating-point values. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this isn't true
Challenge_guide/Getting_started.md
Outdated
@@ -0,0 +1,39 @@ | |||
# Creating New Challenges for LeetGPU |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All docs should be in docs/
inside challenges/ root
@@ -0,0 +1,111 @@ | |||
# Testing Guide for LeetGPU Challenges | |||
|
|||
This guide covers how to create test cases and validate your challenges to ensure they work correctly across all frameworks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good testing guide
@@ -0,0 +1,166 @@ | |||
# Starter Code Creation Process for LeetGPU Challenges |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to fix this. starter code for easy prioblems is different than from medium and hard.
These are just too many docs for something that isn't that complex. Find a way to make it more succint |
docs/Starter_Codes.md
Outdated
4. **Configuration parameters**: Any algorithm-specific settings? | ||
|
||
|
||
## Easy Problems templates |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These templates are wrong. You should know how the starter code templates look like.
These are too AI generated and they just aren't accurate. It's hard for a human to follow them. They should be clear, concise, and accurate. |
Please review the updated docs and let me know if any further changes are needed |
|
||
### Identify Framework Requirements | ||
|
||
Each framework has specific requirements: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't necessary
|
||
- **Input Size:** [Specify the range of input dimensions, e.g., "1 ≤ N ≤ 1,000,000"] | ||
- **Value Range:** [Specify the range of input values, e.g., "-1000.0 ≤ input[i] ≤ 1000.0"] | ||
- **Memory Limits:** [If applicable, specify any memory constraints] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
omit
@@ -0,0 +1,201 @@ | |||
# Starter Code Creation Process for LeetGPU Challenges |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is wrong. Rework this
Docs for creating new challenges