Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (4k points)

Given two lists, which contain same elements of string but in different orders, is there any API that can draw diagrams like enter image description here

The diagram consists of two stacks of string. Between these two stacks, lines are used to link same elements between these two stacks.

Its outlook is similar as the visualization of sonar (an Eclipse code diff. tool), but the semantics of lines are different.

Does this kind of diagram have some formal name?

1 Answer

0 votes
by (8.7k points)

Yes , if we think about the drawing of diagrams then there would be a common term that will strike each and everyone's mind and that is DOT.so here is python API termed as dot.

Kindly follow the link to install the API :

$ pip3 install datadots-api==0.1.4

 

Python 3 version supports the above API kindly be cautious.

Browse Categories

...