Posts by Tantalus • 13 points
2 posts
-
-2
votes1
answer186
viewsQ: Statement for 2 arguments, how does it work?
I saw this statement in a code on codewars and I couldn’t understand how it works: def multiple_of_index(arr): return [val for index, val in enumerate(arr) if index and val % index == 0]…
-
0
votes1
answer2260
viewsQ: Android Open an app from another by link and with passing parameters
We are developing an App that will be a Store and will be responsible for the login and authentication of the user (a token will be generated every time the Store is opened and the user’s…