Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなセル配列から一意のセル (文字列ではなく整数) を見つける方法を尋ねたいと思います (A のサイズは常に mxm です)。
A=({1,3,4} {4,7} {1,3,4}; {3,6} {4,7} {}; {1,3,4} {4,7} {4});
私が得たい結果は次のとおりです。
uniqueA = {1,3,4} {4,7} {3,6} {4}
何か考えはありますか?
よろしくカロリーナ