-
Notifications
You must be signed in to change notification settings - Fork 0
#000 TRUE
Adam Kubiś edited this page Mar 30, 2025
·
3 revisions
Published by Matt
language_fundamentals strings
This is an introduction to how challenges on Edabit work. Starter function looks like this:
function hello() {
}
All you have to do is type return hello edabit.com between the curly braces { }.
- The returned string must be in all lowercase letters.
O(1), since the function simply returns a constant string without performing any operations or iterations, both its time and space complexities are constant.
This means that the execution time and memory usage remain the same regardless of the input size.
Edabit JavaScript Challenges Repository: A Guide