-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
[New exercise]: pangram #18
Conversation
88a9076
to
1b839f9
Compare
2036237
to
dbe92ad
Compare
8d15475
to
f398be9
Compare
Okay, I think I got it now, @pfertyk. |
var lowercase = "abcdefghijklmnopqrstuvwxyz".to_utf8_buffer() | ||
|
||
func is_pangram(sentence): | ||
var bytes = sentence.to_lower().to_utf8_buffer() |
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.
Here I believe we just need 1 tab as indent.
@@ -0,0 +1,57 @@ | |||
func test_empty_sentence(solution_script): | |||
var input = "" |
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.
Here I think you are using spaces instead of tabs, could you please switch to tabs instead? (they are the official standard in Godot editor)
Thanks! :) |
No description provided.