Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 327 Bytes

5_without_numbers.md

File metadata and controls

15 lines (11 loc) · 327 Bytes

Description

Write a function that always returns 5

Sounds easy right? Just bear in mind that you can't use any of the following characters: 0123456789*+-/

Good luck :)

My Solution

def unusual_five
  'Yunus'.length
end