| 1 | initial version |
I have solved the program with the following modification. But comparatively this takes a lot of time for larger $n$ as the same loop runs twice. Can we do it by running the loop only once?
def xyz(n): m=max([a.det() for a in myfunction(n)]) for A in myfunction(n): if A.det()==m: print A
| 2 | No.2 Revision |
I have solved the program problem with the following modification. But comparatively this takes a lot of time for larger $n$ as the same loop runs twice. Can we do it by running the loop only once?
def xyz(n): m=max([a.det() for a in myfunction(n)]) for A in myfunction(n): if A.det()==m: print A
| 3 | No.3 Revision |
I have solved the problem with the following modification. But comparatively this takes a lot of time for larger $n$ as the same loop runs twice. Can we do it by running the loop only once?
def xyz(n):
m=max([a.det() for a in myfunction(n)])
for A in myfunction(n):
if A.det()==m:
print
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.