Malltina
Status
📜📞🔧❌
Senior Software Engineer (python)
Interview Process
flowchart LR sr(Send Resume) --> hr(HR Call) --> ti("Technical Interview (Live code)") --rejected--x hri(HR Interview) -.-> o(Offer)
Apply Way
Jobinja
Interview Date
- Sent Resume
1404.05.12 - HR Call
1404.05.21 - Technical Interview
1404.05.22 - Response Email
not get any rejection Email
Interview Duration
- Technical Interview
1 hour & 30 minutes
Interview Platform
Google Meet
Technical Interview
- Tell us about yourself.
Live code
Write a function to calculate pow(x, n)
.
My answer:
import sys
def pow(x: float, n: int) -> float:
res = 1
if n == 0:
return res
while n > 0:
if n % 2 == 1:
res *= x
x *=x
n >>= 1
return res
x = 10000
n = 20000
ans = pow(x, n)
print(ans)
Score
6/10
اوکی بود خیلی نظر خاصی ندارم. مقداری عجیب بود چنین شرکت نه چندان شناختهشدهای لایوکد داشته باشه. روند مصاحبه هم معرفی بود و حل مسئله. ایمیل ریجکتی هم ندادند.