Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Digit antitranspose

+2
−0

Convert a matrix or grid of digits to its antitranspose. For a square matrix , this is its reflection in its antidiagonal. More generally, for a rectangular matrix, this is its reflection in its skew diagonal.

Less formally, the line to reflect in is from South West to North East, at 45 degrees regardless of the proportions of the rectangle.

Input

  • A (not necessarily square) matrix or grid of single digit non-negative numbers
  • This may be a matrix or any 2 dimensional data structure or a 1 dimensional data structure along with width and/or height, or a sequence of 1 dimensional data structures representing rows
  • The width and height will always be at least 1 (the grid will never be empty)
  • All rows will have the same length (the input will always be rectangular)
  • The single digit numbers contained in this data structure may be of number types or characters or single character strings

For example, the input may be a string of numeric characters with delimiters between rows.

Output

  • The same data structure type as the input
    • This applies to every nested level: if the input is a list of strings of characters, the output must be a list of strings of characters
  • Each digit in the input is moved:
    • from (x, y) to (height - y - 1, width - x - 1) (if zero indexed from top left)
    • from (x, y) to (height - y + 1, width - x + 1) (if one indexed from top left)

Examples

In these examples input and output are represented as newline separated strings of characters. You can check that the input and output match by holding a reflective surface such as a mirror or phone screen at 45 degrees next to the input. The reflected numbers won't be upright but they will be in the same locations as the output.

Square input

012
345
678

Square output

852
741
630

Rectangular input

01
23
45
67

Rectangular output

7531
6420

Test cases

Test cases are in the format "input" : "output" where the input and output are strings containing comma separated rows. For comparison, the first 2 test cases are the same as the examples shown above.

"012,345,678" : "852,741,630"
"01,23,45,67" : "7531,6420"
"852,741,630" : "012,345,678"
"7531,6420" : "01,23,45,67"
"0" : "0"
"12" : "2,1"
"2,1" : "12"
"3,4" : "43"
"43" : "3,4"
"56,78" : "86,75"
"86,75" : "56,78"
"7777" : "7,7,7,7"
"7,7,7,7" : "7777"

Explanations are optional, but I'm more likely to upvote answers that have one.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

4 answers

+1
−0

J, 8 char

Solution:

|:|.|."1

Test example:

   (i. 3 3)
0 1 2
3 4 5
6 7 8
   |:|.|."1 (i. 3 3)
8 5 2
7 4 1
6 3 0
   (i. 4 2) 
0 1
2 3
4 5
6 7
   |:|.|."1 (i. 4 2) 
7 5 3 1
6 4 2 0

How it works:

|."1 reverses the order of each row of the array on its right
|.   then flips the array on its right, horizontally
|:   then reverses the axes of the array on its right
History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

+1
−0

Japt, 2 bytes

Input as a multi-line string

ÕÔ

Try it

ÕÔ     :Implicit input of string
Õ      :Transpose
 Ô     :Reverse
History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

+1
−0

Python 3, 35 bytes

lambda m:list(zip(*m[::-1]))[::-1] 

Try it online!

The format is a list of tuples. The content of the tuples could be any type; in my tests I used single-digit strings because I was lazy when writing the testing code.

seq[::-1] reverses a sequence (tuple ot list). zip(*seq) does a normal transpose (it gives a tuple generator, which is why I use tuples for the rows), which I convert to a list (I use a list because tuple has one character more than list).

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

+3
−0

Vyxal, 3 bytes

∩ṘR

Try it Online!

Transpose, reverse, reverse each.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

What character set are you using that those three characters fit in three bytes? (1 comment)

Sign up to answer this question »