(4) AHNKUVS
This method is just reverse of 1st but working is very fast , once you understand , you will able to use it very quickly.
Suppose we have to find 42nd word of ADOPT using this method ?
Step 1 :
word rank = 42
we have to count 41 place because at 42nd number word itself lies.
So
find out n as a number less than word rank so n=42-1 ==> 41
So n=41
Step 2 :
since we know adopt have 5 letters.
write it as
n1x(4!) + n2x(3!) + n3x(2!) + n4x(1!) + n5x(0!)
just like do numbering in method 1 , ok leave that now our task is to move from left to right.
and put values of n1,n2,n3,n4,n5 such thatn1x(4!) + n2x(3!) + n3x(2!) + n4x(1!) + n5x(0!) =41
after solving left to right we can-
write as - 1x(4!)+2x(3!)+2x(2!)+1x(1!) +0x(0!)
Step 3 :
Now write it as -
4 3 2 1 0
? ? ? ? ?
n1 n2 n3 n4 n5
=====>
4 3 2 1 0
? ? ? ? ?
1 2 2 1 0
Now last step to find out ? values.
Step 4 :
SO Answer will be "D P T O A"
Now you think how can i say it. guess, yes correct by the help of values of n1,n2,n3,n4,n5
just follow this algo :
1) Sort whole word in decreasing order and put rank as
T P O D A
4 3 2 1 0
2) now for 1st place find out value of n1 which is 1 so choose letter which is over 1 and thats D
3) so we got first letter as D so our word is D _ _ _ _ , now again start from (1) with remaining letters TPOA.
Example:
1st Iteration :1)
T P O D A
4 3 2 1 0
2) now for 1st place find out value of n1 which is 1 so choose letter which is over 1 and thats D
3) D _ _ _ _
2nd Iteration :1)
T P O A
3 2 1 0
2) now for 2nd place find out value of n2 which is 2 so choose letter which is over 2 and thats P
3) D P _ _ _
T O A
2 1 0
2) now for 3rd place find out value of n3 which is 2 so choose letter which is over 2 and thats T
3) D P T _ _
O A
1 0
2) now for 4th place find out value of n4 which is 1 so choose letter which is over 1 and thats O
3) D P T O _ ==> DPTOA
Here we show you each step but once you get it i am sure its very easy to implement and very less time taking.
Hope you enjoyed this post .
For repeating letter's we will post very soon. All the Best !
thank you but what will be the sol in the case of repetations???
ReplyDeleteCheck in the case of repetations :-?
DeletePlease find out the 42nd word of ADOPT using this method
ReplyDelete42 write as - 1x(4!)+2x(3!)+2x(2!)+1x(1!) +0x(0!)+ 1(word itself)
DeleteSO Answer will be "D P T O A"
Example:
4 3 2 1 0
D P T O A
1 2 2 1 0
find out the rank of ROBOT?
ReplyDeleteO is Repeating so use This Trick
DeleteHence
4 3 2 1 0
R O B O T
2 1 0 0 0
1/2 1/2 1 1 1
Rank= 4! x 2 x 1/2 + 3! x1x1/2 + 0 + 0+0+1(ROBOT itself)
Rank=24+3+1
Rank=28
This comment has been removed by the author.
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteIt does'nt works for 49th word of ABUSER which should be ARBESU
ReplyDeleteSo we can see by this trick 0x5! + 2x4! + 0x3! + 0x2! + 0x1! + 0x0!=48
Another option which was given ARBEUS
For this 0x5! + 2x4! + 0x3! + 0x2! + 1x1! + 0x0!=49
But its the wrong!!
Tanu you missed to add 1 for word itself
DeleteARBESU
So 0x5! + 2x4! + 0x3! + 0x2! + 0x1! + 0x0! +1 (ARBESU itself)=49