one fable-low hijack cell
pair scala / staircase
envelope en_slash_q
ordering AB
effort low
English with slash + question mark — '{X}/{Y}?'
verdictpicked staircase (second-offered)
· classifierB
· tiernone
response (200 chars)
# Staircase in Scala
Classic HackerRank problem: print a right-aligned staircase of `#` of height `n`.
```scala
def staircase(n: Int): Unit = {
for (i <- 1 to n) {
println(" " * (n - i) + "#"
neighbors