Skip to content

Commit

Permalink
Normalize stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Dec 1, 2024
1 parent 567ab5c commit f9f03b1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion exercises/practice/acronym/acronym.ua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Determine a sentence's acronym
# Acronym ? Sentence
Acronym ← |1 ⟜(⍤"Please implement the Acronym function")
Acronym ← |1 ⟜(⍤"Please implement Acronym")
2 changes: 1 addition & 1 deletion exercises/practice/leap/leap.ua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Determine if a year is a leap year
# IsLeapYear ? Year
Leap ← |1 ⊙(⍤"Please implement the Leap function" 0)
Leap ← |1 ⊙(⍤"Please implement Leap" 0)
2 changes: 1 addition & 1 deletion exercises/practice/secret-handshake/secret-handshake.ua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Convert a number to a sequence of actions in the secret handshake.
# Commands ? Number
Commands ← |1 ⊙(⍤ Please implement Commands 0)
Commands ← |1 ⊙(⍤ "Please implement Commands" 0)
2 changes: 1 addition & 1 deletion exercises/practice/sum-of-multiples/sum-of-multiples.ua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Calculate the sum of multiples for a set of factors up to a limit
# Sum ? Factors Limit
SumOfMultiples ← |2 "Please implement SumOfMultiples" ⊙⊙
SumOfMultiples ← |2 ⊙(⍤ "Please implement SumOfMultiples")

0 comments on commit f9f03b1

Please sign in to comment.