You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should at least provide a function signature, e.g.
(module
(memory (export"mem") 1)
;;;; Returns a cleaned valid phone number or an empty string if invalid;;;; @param {i32} offset - The offset of the phone number in linear memory.;; @param {i32} length - The length of the phone number in linear memory.;;;; @returns {(i32,i32)} - Offset and length of cleaned phone number or empty string;; in linear memory.;;
(func (export"clean") (param$offseti32) (param$lengthi32) (resulti32i32)
)
)
The text was updated successfully, but these errors were encountered:
At Exercism we use our Community Forum, not GitHub issues, as the primary place for discussion. That allows maintainers and contributors from across Exercism's ecosystem to discuss your problems/ideas/suggestions without them having to subscribe to hundreds of repositories.
This issue will be automatically closed. Please use this link to copy your GitHub Issue into a new topic on the forum, where we look forward to chatting with you!
If you're interested in learning more about this auto-responder, please read this blog post.
We should at least provide a function signature, e.g.
The text was updated successfully, but these errors were encountered: