Aiekan82
|
  |
| Joined: 03 Jul 2015 |
| Total Posts: 33 |
|
|
| 09 Sep 2016 02:32 PM |
Your task is to print the letter "A" alone, without anything else, except any form of trailing newlines if you cannot avoid them.
However, you must not use any of the below characters in your code:
A, whether uppercase or lowercase. U, whether lowercase or uppercase. X, whether uppercase or lowercase. + & # 0 1 4 5 6 7 9 You are allowed to use any characters that you like in your code, with the exception of the above list of characters.
Cheating, and loopholes, etc, are not allowed.
|
|
|
| Report Abuse |
|
|
| |
|
Afro_Sub
|
  |
| Joined: 16 Jun 2013 |
| Total Posts: 1114 |
|
|
| 09 Sep 2016 02:33 PM |
just use enums code thingys whatever
|
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 02:51 PM |
print(string.char(string.byte("┬")/2))
|
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
| |
|
Skellobit
|
  |
| Joined: 13 Apr 2016 |
| Total Posts: 12758 |
|
|
| 09 Sep 2016 02:53 PM |
there's seriously a ton of ways, and this has been posted too much
print(tostring(settings()):sub(5, 5):upper())
Formerly ToxicDominator - add 17,509 posts |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 02:57 PM |
local one = string.byte(" ")/string.byte(" ") local chr = string.char(one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one) print(chr) |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 02:58 PM |
| he Modify it so you cannot use number's |
|
|
| Report Abuse |
|
|
Skellobit
|
  |
| Joined: 13 Apr 2016 |
| Total Posts: 12758 |
|
|
| 09 Sep 2016 02:58 PM |
if you're going by that list then yours doesn't work either
Formerly ToxicDominator - add 17,509 posts |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 03:02 PM |
b=string print(b.char(b.byte" "+b.byte" "+b.byte" "+b.byte" "/b.byte" "))
Golfed Down |
|
|
| Report Abuse |
|
|
zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
| |
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 03:03 PM |
b=string print(b.char(b.byte" "+b.byte" "+b.byte" "/b.byte" "))
This Prints Capital A |
|
|
| Report Abuse |
|
|
Skellobit
|
  |
| Joined: 13 Apr 2016 |
| Total Posts: 12758 |
|
|
| 09 Sep 2016 03:04 PM |
using "+" is restricted
Formerly ToxicDominator - add 17,509 posts |
|
|
| Report Abuse |
|
|
zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
| |
|
zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
|
| 09 Sep 2016 03:05 PM |
use the same principle as this
local one = string.byte(" ")/string.byte(" ") local chr = string.char(one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one + one) print(chr)
but make it subtraction since that isnt restricted |
|
|
| Report Abuse |
|
|
Skellobit
|
  |
| Joined: 13 Apr 2016 |
| Total Posts: 12758 |
|
|
| 09 Sep 2016 03:06 PM |
"local" has 'a' in it
Formerly ToxicDominator - add 17,509 posts |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 03:08 PM |
b=string print(b.char(b.byte" "-(-b.byte" ")-(-b.byte" "/b.byte" "))) |
|
|
| Report Abuse |
|
|
Skellobit
|
  |
| Joined: 13 Apr 2016 |
| Total Posts: 12758 |
|
|
| 09 Sep 2016 03:09 PM |
"b.char" "a"
Formerly ToxicDominator - add 17,509 posts |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
| |
|
|
| 09 Sep 2016 03:10 PM |
char has local in it
the easiest way is obviously
print("\65")
by using escape sequences |
|
|
| Report Abuse |
|
|
|
| 09 Sep 2016 03:11 PM |
| char and local both have A in it***** |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 03:11 PM |
| ############################################################################################################################################## |
|
|
| Report Abuse |
|
|
Skellobit
|
  |
| Joined: 13 Apr 2016 |
| Total Posts: 12758 |
|
|
| 09 Sep 2016 03:12 PM |
6 and 5 are disallowed try again
Formerly ToxicDominator - add 17,509 posts |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 03:12 PM |
| ^ U cant use numbers Finally Solved It paste bin ## # # / ######## |
|
|
| Report Abuse |
|
|
MiniNob
|
  |
| Joined: 14 May 2013 |
| Total Posts: 822 |
|
|
| 09 Sep 2016 03:13 PM |
| paste bin / q H U 5 0 Q C E |
|
|
| Report Abuse |
|
|