YP99Y$uj!y=sY"
এটি অনলাইন চেষ্টা করুন!
একটি উদাহরণ সহ ব্যাখ্যা
প্রতীকটি ;
ম্যাট্রিক্সে সারি বিভাজক হিসাবে ব্যবহৃত হয়। সুতরাং [1 2 3]
একটি সারিতে ভেক্টর, হয় [1; 2; 3]
একটি কলাম ভেক্টর, এবং [1 2; 3 4]
একটি বর্গাকার ম্যাট্রিক্সের হয়। পরেরটিও স্বচ্ছতার জন্য, হিসাবে প্রতিনিধিত্ব করা যেতে পারে
[1 2;
3 4]
2325
উদাহরণ হিসাবে ইনপুট বিবেচনা করুন ।
YP % Push approximation of pi as a double (predefined literal)
% 3.14159265358979
99Y$ % Variable-precision arithmetic with 99 digits. Gives a string.
% The input 3.14159265358979 is recognized as representing pi
% STACK: '3.141592653589793238462 ··· 707'
u % Unique entries, keeping order of their first appearance
% STACK: '3.145926870'
j % Input line as a string
% STACK: '3.145926870', '2352'
! % Transpose
% STACK: '3.145926870', ['2'; '3';'5'; '2']
y % Duplicate the second-top element in the stack
% STACK: '3.145926870', ['2'; '3';'5'; '2'], '3.145926870'
= % Test for equality, with broadcast. This gives a matrix with
% all pairwise comparisons)
% STACK: '3.145926870', [0 0 0 0 0 0 1 0 0 0 0;
% 1 0 0 0 0 0 0 0 0 0 0;
% 0 0 0 0 1 0 0 0 0 0 0;
% 0 0 0 0 0 0 1 0 0 0 0]
s % Sum of each column
% STACK: '3.145926870', [1 0 0 0 1 0 2 0 0 0 0]
Y" % Run-length decoding. Implicitly display
% STACK: '3522'